Changelogs

Overview

These changelogs reflect the history of all files in the Subversion repository. The changelog has been generated at 2016-05-09 08:38:04

Changes per page:

25 50 100 250 500 1000 2000

Changelog for wxWidgets (70435 changes):

2011-08-21 16:08 VZ, revision 68811

No changes, just move wxCheckBoxState to wx/defs.h from wx/checkbox.h. Move the enum to allow reusing it in other places.

2011-08-21 16:08 VZ, revision 68810

No changes, just use symbolic NO_IMAGE constant instead of -1 or wxNOT_FOUND. Existing declarations used -1 in several places to indicate the absence of the image which wasn't especially clear and was also inconsistent with other places that used wxNOT_FOUND which didn't make much sense in this context. Add a new symbolic constant NO_IMAGE in wxWithImages and use it in the classes deriving from it. This still doesn't help with wx{Tree,List}Ctrl but improves clarity for the other classes.

2011-08-21 16:08 VZ, revision 68809

Add wxWithImages helper mix-in with {Set,Get,Assign}ImageList() methods. Avoid defining SetImageList() in several different places in wx API as not only this resulted in (trivial) code duplication but this method also had different semantics before: it didn't take ownership of the pointer passed to it in wxTreeCtrl, wxListCtrl and wxBookCtrl and derived classes but did take its ownership in wxDataViewTreeCtrl and wxRichTextFormattingDialog. Harmonize this for all the classes now: SetImageList() never takes ownership while AssignImageList() (which is now available in all classes having SetImageList()) always does. Also add convenience wxWithImages::GetImage() helper to avoid (more) code duplication in wxDataViewTreeCtrl code.

2011-08-21 14:06 VZ, revision 68808

Replace wxComboBox::IsEmpty() with Is{List,Text}Empty(). IsEmpty() didn't exist in all ports (notably not wxMSW) and its meaning was unclear anyhow, so remove it even from the ports where it did exist and add clear Is{List,Text}Empty() replacements instead.

2011-08-21 11:07 VS, revision 68807

Rename wxDataViewCtrl::InvalidateColBestWidth* to UpdateColBestWidth*. The new names make it more clear that the functions don't just set an invalidated flag, but that they actually do some recalculations.

2011-08-21 11:07 VS, revision 68806

Fix autosize columns width calculation in generic wxDataViewCtrl. Column widths were recomputed too soon -- after the model changed, but before the control's own data structures were updated to reflect the change. This could lead to incorrect calculations or worse, crashes.

2011-08-21 09:45 LV, revision 68805

wxTableCtrl wxiOS tests

2011-08-21 09:45 LV, revision 68804

Parts of wxTableCtrl/wxNavigationCtrl moved to 'generic' source files

2011-08-21 09:45 LV, revision 68803

Safer wxViewController SetWindow()

2011-08-21 09:45 LV, revision 68802

wxStaticBitmap wxiOS tests

2011-08-21 09:45 LV, revision 68801

wxBitmapButton wxiOS tests

2011-08-21 09:45 LV, revision 68800

wxiOS test bitmap moved to a more generic location

2011-08-21 08:46 JC, revision 68799

Fixed a bug in reading xbm files.

2011-08-20 16:04 SJL, revision 68797

Fix history when using custom schemes in GTK.

2011-08-20 14:25 VZ, revision 68796

Add a one line script to clean patches before submitting them for review. Exclude changes to the auto-generated files using filterdiff.

2011-08-20 12:59 SJL, revision 68795

Add virtual destructors to fix GCC4 warnings.

2011-08-20 11:50 SJL, revision 68794

Another compilation fix for OSX 10.5

2011-08-20 07:09 JC, revision 68793

Merged from the trunk

2011-08-19 20:25 VS, revision 68792

Reorganize wxDataViewMainWindow::ItemAdded() for better readability. Reuse common code. No real changes.

2011-08-19 18:10 DS, revision 68791

Fixed failing test in ImageTestCase for builds made with makefiles. The recently added BMP images in tests/image/ were not being copied. Added them to test.bkl and regenerated makefiles.

2011-08-19 15:30 SJL, revision 68790

Update documentation for new library name.

2011-08-19 12:45 SJL, revision 68789

Rename web library to webview.

2011-08-19 11:15 SJL, revision 68788

Rename wxUSE_WEB to wxUSE_WEBVIEW to reflect that actually it specifically toggles the wxWebView class and associated features.

2011-08-19 05:57 DS, revision 68787

Documented wxIMAGE_OPTION_TIFF_* options that are currently in use.

2011-08-19 05:50 DS, revision 68786

Use a default photometric interpretation value of PHOTOMETRIC_MINISWHITE instead of PHOTOMETRIC_MINISBLACK for greyscale and b/w TIFF images. Closes #13194.