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-12-25 14:28 VZ, revision 70116

Always link with expat in monolithic build. Fix linking errors when using wxXML in sttaic monolithic build: in this case we must link with expat but it was listed too early, before wxWidgets libraries using it, in the bakefile-generated makefiles. Now add it to the end of the linker command line too by including -lexpat in EXTRALIBS_FOR_BASE which are appended to the linker arguments. Notice that now -lexpat is linked twice because it is still added by <wx-lib>xml</wx-lib> in bakefiles, even in monolithic build, but I don't know how to avoid it and it is harmless anyhow. Closes #12573.

2011-12-25 13:52 VZ, revision 70115

Added a warning about multi-cells in wxGrid::DeleteRows() docs. Currently deleting rows or columns intersecting a multi-cell is simply not supported and results in an immediate crash. See #4238.

2011-12-25 01:57 PC, revision 70114

restore call to GetTabSize removed in r69880, it is needed to set x_extent

2011-12-24 19:30 VZ, revision 70113

Really fix the use of deprecated methods in wxGrid test. The changes of r70111 were wrong, the unit test for wxGrid really did intend to test the deprecated methods so restore them -- but only in WXWIN_COMPATIBILITY_2_8 case.

2011-12-24 19:19 VZ, revision 70112

Implement wxNotebook::CalcSizeFromPage() for wxGTK. The implementation is far from perfect as it relies on hard-coded margins but is better than nothing as it allows wxNotebook best size determination and SetPageSize() method to work correctly.

2011-12-24 18:58 VZ, revision 70111

Don't use deprecated methods in wxGrid test. Don't use the methods defined only when building 2.8-compatible mode to let the tests compile even with WXWIN_COMPATIBILITY_2_8 off. This only worked before because of the wrong tests in grid.h but broke after the fixes of r70098.

2011-12-24 17:46 PC, revision 70110

remove improper use of paste operator

2011-12-24 16:43 VZ, revision 70109

Fix fatal bug with deleting the old contents in wxScopedArray::reset(). "delete" was wrongly used instead of "delete[]". Closes #13806.

2011-12-24 16:43 VZ, revision 70108

Use the correct function type cast in EVT_WEBKIT_NEW_WINDOW. Use wxWebKitNewWindowEventHandler to perform a proper static_cast<>, which detects incorrect casts during compilation, instead of wxWebKitNewWindowEventFunction which was just doing an unsafe C-style cast. Cloes #13805.

2011-12-24 16:43 VZ, revision 70107

Add EVT_FSWATCHER event table macro. It was documented, and ought to have existed anyhow for consistency with wxEVT_FSWATCHER, but wasn't defined. Do it now. Closes #13804.

2011-12-24 16:43 VZ, revision 70106

Add EVT_WINDOW_MODAL_DIALOG_CLOSED() event table macro. Add it for consistency with wxEVT_WINDOW_MODAL_DIALOG_CLOSED. See #13804.

2011-12-24 16:43 VZ, revision 70105

Fix typo in wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK in documentation. It was misspelt as wxEVT_COMMAND_RICHTEXT_DLEFT_CLICK. Closes #13802.

2011-12-24 16:42 VZ, revision 70104

Remove references to defunct event types in comments. No real changes, just complete the changes of r58039 by removing the references to non-existent (any more) event types from the comments too. Closes #13801.

2011-12-24 12:39 JS, revision 70103

Applied #13803: wxRichTextCtrl: missing event-table macro (dghart)

2011-12-24 11:08 SJL, revision 70102

Disable some wxWebView tests that fail on the buildbot but not locally.

2011-12-24 11:05 SJL, revision 70101

Fix typo in ADD_RAW_IID macro.

2011-12-23 20:16 SJL, revision 70100

Add some extra yields to wxWebView unit tests to hopefully fix some of the failing buildbot runs.

2011-12-23 18:38 PC, revision 70099

don't use deprecated function

2011-12-23 06:59 PC, revision 70098

fix tests for WXWIN_COMPATIBILITY_2_8, closes #13800

2011-12-22 20:16 SJL, revision 70096

Use OLE helper macros in wxWebView to reduce the amount of duplicated code.

2011-12-22 20:14 SJL, revision 70095

Add new ADD_RAW_IID OLE helper macro to allow use with classes that do not start with IID_I.

2011-12-22 20:08 SJL, revision 70093

Mark various OLE helper functions as DLL exported so they can be used from other libraries.

2011-12-22 19:21 PC, revision 70091

remove SetBackgroundStyle call from OnInternalIdle, it should be done from realize handler, closes #13799

2011-12-22 17:36 VZ, revision 70088

Fix wxLogFormatter compilation under MSW. Fix wxMSW compilation after the changes of r70086. Closes #13792.

2011-12-22 15:47 VZ, revision 70087

Dramatically optimise inserting many items in wxGenericListCtrl. During each item insertion SetItem() was called and this resulted in a call to GetItemRect() which, in turn, re-laid out all items in the control meaning that the relatively expensive wxListMainWindow::RecalculatePositions() was called N times when inserting N items. Reduce this to just a single call by not refreshing the item in SetItem() if everything is going to be redrawn soon anyhow. This decreases the time needed to insert a couple of thousands of items in icon view from several minutes to less than a second.