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):

2012-03-21 17:42 RD, revision 70955

Avoid assert when deleting columns if there is more columns than there are column labels

2012-03-21 01:11 VZ, revision 70954

Fix display of "const" methods in wxGTK assert dialog. Don't separate the function name and its arguments types in 2 different columns in the assert dialog, this doesn't really work with const methods as "const" can't be separated from the function like this. The old code just didn't take "const" into account at all and mangled all the const methods by showing ") cons" (no typo) at the end. Just show everything in one column to avoid the problem and also simplify the code. Closes #14104.

2012-03-21 00:31 VZ, revision 70953

Remove empty and unnecessary wxFontDialogBase destructor. This fixes build with wxUSE_FONTMAP==0 as this dtor was only defined inside "#if wxUSE_FONTMAP" section. Instead of fixing this, just get rid of this dtor entirely as it was unnecessary anyhow.

2012-03-21 00:26 VZ, revision 70952

Fix wxMSW compilation when wxUSE_FONTMAP==0. Don't use wxFontMapper::GetEncodingName() in wxFontEnumerator if wxFontMapper is not available.

2012-03-21 00:07 PC, revision 70951

make wxMask pixmap member private

2012-03-20 21:53 RD, revision 70948

Document steps needed to update to newer Scintilla. (From memory, will need to be reviewed while actually doing an update to find other things that should be done.)

2012-03-20 04:34 PC, revision 70945

Fix keyboard navigation broken in r70324, see #14084 Also fixes some other keyboard navigation problems, closes #2849

2012-03-19 14:41 JJ, revision 70944

Updates for OpenVMS

2012-03-19 13:53 VZ, revision 70943

Define wxUSE_TASKBARICON_BALLOONS as 1 for wxMSW builds using configure. Defining it as 1 is better than not allowing to set it at all and this setting is not important enough to warrant its own command-line configure option. Closes #14106.

2012-03-19 13:53 VZ, revision 70942

Fix wrong wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK name in the docs. It was spelt with an extra "ED" at the end. Closes #14109.

2012-03-19 13:53 VZ, revision 70941

Fix appearance of items without icons in wxDataViewCtrl in wxOSX/Cocoa. We need to set the cell image to none explicitly if the item doesn't have any, otherwise the image for the previous cell would be reused. Closes #14112.

2012-03-19 13:53 VZ, revision 70940

Explicitly cast size_t to int to suppress MSVC warnings. Implicit size_t-to-int conversions provoke warnings when building 64 bit version (in which sizeof(size_t) > sizeof(int)) with MSVC, so make them explicit as the size_t values used here will always fit in int range. Closes #14113.

2012-03-19 00:25 JS, revision 70939

Added a parameter to PrintBuffer and PrintFile to allow silent or prompted printing.

2012-03-18 22:17 VZ, revision 70938

Brazilian Portuguese translations update from Felipe.

2012-03-18 21:35 JS, revision 70937

Added wxPropertyGridManager::SetPageSplitterLeft

2012-03-18 19:06 SC, revision 70936

fixes #14110

2012-03-18 02:35 VZ, revision 70935

Avoid crashes in wxMSW when using buttons without valid parent. Child controls such as buttons are supposed to always have a valid parent but if, somehow, they don't, still don't crash in wxMSW button code but just trigger an assert failure instead of unavailable button top level parent instead.

2012-03-17 21:42 RD, revision 70932

fix compile error

2012-03-17 11:52 SC, revision 70926

avoid shortcut ampersands in button text

2012-03-17 03:55 RD, revision 70920

Remove --mac_arch and enable --mac_universal_binary to accept one or more architectures instead.

2012-03-17 03:55 RD, revision 70919

Make Dismiss() virtual.

2012-03-16 13:37 VZ, revision 70911

Hungarian translations update from Ócsvári Áron.

2012-03-16 00:24 VZ, revision 70910

Improve wxListCtrl::SetItemState() documentation. Better explain the meaning of its parameters.

2012-03-15 14:49 VZ, revision 70909

Enable/disable "Window" menu items in AUI MDI correctly. Add EVT_UPDATE_UI handlers for "Close", "Close All" as well as "Next" and "Previous" menu commands. Closes #14102.

2012-03-15 14:49 VZ, revision 70908

Pass the original format to wxDataObjectSimple in wxDataObjectComposite. Some "simple" data objects, such as wxTextDataObject, are actually not simple and support multiple formats so pass the real format to them so that they could do the right thing. Closes #14101.