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-02-15 00:09 VZ, revision 70580

Remove the mention of non-existing wxPrintf_l() from the documentation. This function doesn't exist (yet), so don't advise people to use it.

2012-02-13 16:23 SC, revision 70579

adding missing initializer to raw_control, fixes #13963

2012-02-13 16:22 SC, revision 70578

adapting comparison to raw_control, see #13963

2012-02-12 23:19 VZ, revision 70577

Don't document deprecated wxComboCtrl::SetValueWithEvent(). This method shouldn't be used at all, either SetValue() or ChangeValue() should be used instead, so don't document it. Closes #13961.

2012-02-12 23:19 VZ, revision 70576

Implement wxDV_ROW_LINES for generic wxDataViewCtrl. Provide wxDataViewCtrl::SetAlternateRowColour() to specify the colour to use for odd rows explicitly but determine it automatically from the background colour if no explicit colour was specified. Closes #12834.

2012-02-12 23:18 VZ, revision 70575

Don't use deprecated wxDataViewCtrl::StartEditor() in the sample. Also document this deprecation in the change log and explain how to update the existing code.

2012-02-11 21:32 RD, revision 70573

remove some wxPython-only methods that were accidentally added to the interface file

2012-02-11 20:39 PC, revision 70572

remove wxGraphicsContext dependency for transparent background support

2012-02-11 19:36 VZ, revision 70571

Document wxDateTime::GregorianAdoption enum and TimeZone class. These types are referenced by the other documented functions so should be documented themselves. Closes #13959.

2012-02-11 19:36 VZ, revision 70570

Fix "wxEmptyStr" typo in wxChoicebook and wxToolbook documentation. It should be "wxEmptyString". Closes #13955.

2012-02-11 17:26 VZ, revision 70569

Implement wxBG_STYLE_TRANSPARENT support for wxGTK. Use composited windows if supported by GTK+ for wxWindows with this background style. Also add wxWindow::IsTransparentBackgroundSupported() and show how to use it in the sample.

2012-02-11 17:26 VZ, revision 70568

Update marks in non-current months shown in wxMSW wxCalendarCtrl. Native wxMSW calendar control can show more than just the current month. When other months are shown, ensure that they don't have marks for the days marked in the current month as this doesn't make sense. See #13934.

2012-02-11 17:26 VZ, revision 70567

Set marks used in wxMSW wxCalendarCtrl unconditionally. This fixes wrong display (random days could have been shown marked) when not using wxCAL_SHOW_HOLIDAYS style. Apparently we need to set the marks unconditionally as they are not turned off by default, so ensure we call UpdateMarks() even without wxCAL_SHOW_HOLIDAYS. See #13934.

2012-02-11 17:26 VZ, revision 70566

Also add wxNativeFontInfo::SetStrikethrough() stub for wxGTK2. This should have been done in r70563 which added the stub to wxGTK1 part only.

2012-02-11 00:34 VZ, revision 70565

Added a test for wxUSE_DATAOBJ to wxDFB which doesn't support it. This is just one of many, many things not supported by wxDFB but check for at least this one as it prevents even the precompiled header from being created.

2012-02-11 00:34 VZ, revision 70564

Fix compilation ofr ports without native font info, such as wxDFB. Don't use wxString::ToLong() with short variable.

2012-02-11 00:34 VZ, revision 70563

Add stubs for wxNativeFontInfo::{Get,Set}Strikethrough() to wxGTK. These functions are not implemented currently (just as their {Get,Set}Underlined() counterparts) but should still be defined to allow the code using wxNativeFontInfo to link.

2012-02-10 19:30 RD, revision 70557

Don't include the terminating NUL

2012-02-10 11:22 VZ, revision 70556

Fix wxHash{Set,Map} compilation with g++ 4.7 in C++11 mode. Fully qualify the hasher and comparator classes used with WX_DECLARE_HASH_{SET,MAP} macros as they're used as base classes by the standard library implementation in g++ 4.7 and using them without the scope operator results in compilation errors because they're interpreted as being (inaccessible) base classes and not the global ones.

2012-02-09 17:22 VZ, revision 70554

Document MSW-only wxEVT_MOVING event. As we documented EVT_MOVE_{START,END}, we should do it for this one as well.

2012-02-09 14:24 VZ, revision 70553

Fix typo in wxSlider XRC format documentation. "pagesize" was documented as line size, fix this. Closes #13949.

2012-02-09 00:45 VZ, revision 70545

Fix wrong signature of wxBitmap(bits) ctor in the documentation. This ctor takes just a "char* bits" (spelt as "char bits[]" for some reason), not "char* bits[]". Closes #13947.

2012-02-08 13:59 VZ, revision 70544

Restrict button size restrictions documentation to OSX/Carbon only. OSX/Cocoa doesn't have these restrictions. Closes #13122.

2012-02-08 03:09 VZ, revision 70543

Document that wxStandardPaths::GetUserConfigDir() doesn't use app info. Explicitly mention this instead of just relying on the examples to convey it. Closes #11275.

2012-02-08 03:09 VZ, revision 70542

Use wxSTC_INVALID_POSITION in wxStyledTextCtrl documentation. Comments -- copied from the generated header file -- used INVALID_POSITION which is not actually defined, replace it with wxSTC_INVALID_POSITION that is defined. Closes #11454.