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

2013-03-09 16:08 VZ, revision 73628

Test PostScript printing in the print sample if it is compiled in. Just use wxUSE_POSTSCRIPT instead of wxTEST_POSTSCRIPT_IN_MSW and also do it under all platforms, not just MSW. See #1244.

2013-03-09 16:08 VZ, revision 73627

Fix compilation with MinGW -std=c++11 option. With this option _strdup() is not available, so update the code defining wxCRT_StrdupA() to check for __WX_STRICT_ANSI_GCC__. Also try to simplify it a bit and make it more clear. Closes #15011.

2013-03-09 16:08 VZ, revision 73626

Fix compilation for MinGW with wxUSE_IPV6==1. MinGW doesn't provide wspiapi.h header, so only include it when using MSVC and include ws2tcpip.h which directly declares the functions used for the other compilers. This doesn't have quite the same semantics but it's better than failing to compile at all. See #15005.

2013-03-09 16:08 VZ, revision 73625

Don't cache HDC used by wxPaintDCEx in wxMSW. This avoids the problem with mistakenly using wrong HDC in wxBitmapComboBox code which was due to assuming that we can only ever have one paint HDC for the given window -- while in wxBitmapComboBox case we are passed different HDCs for the same window via WM_DRAWITEM. Instead of fixing the cache, just don't use it at all for wxPaintDCEx as we don't gain anything from doing it anyhow. Closes #14842.

2013-03-09 16:08 VZ, revision 73624

Fit the generic preferences editor dialog to its pages size initially. Ensure that the dialog has the appropriate size before showing it. In addition to making it big enough to fit the pages contents, this also fixes a problem with initial appearance under MSW. Closes #15092.

2013-03-09 16:08 VZ, revision 73623

Don't set cell value in wxDataViewEvent in one place only. We should either set the cell value in the event object everywhere or not do it anywhere and as currently the native GTK and OS X versions don't do it at all and the generic version only does it for ITEM_CONTEXT_MENU events, it's easier to not do it at all. See #14163.

2013-03-09 16:07 VZ, revision 73622

Remove wxLogWindow::OnFrameCreate() virtual method. This method couldn't be overridden by the classes deriving from wxLogWindow because it was called (indirectly) from wxLogWindow ctor itself and so was completely useless. Just remove it to avoid confusion. Closes #12763.

2013-03-09 16:07 VZ, revision 73621

Restore wxDIRCTRL_SHOW_FILTERS flag of wxDirCtrl. Closes #8572.

2013-03-07 22:41 SC, revision 73614

avoid infinite recursion for richtooltops, (hopefully) fixes #15070

2013-03-06 22:00 SC, revision 73610

implementing canBecomeKeyView for user panes, native focus support, fixes #15070

2013-03-05 07:50 RD, revision 73604

Minor tweaks to the preferences docs for Phoenix.

2013-03-05 07:50 RD, revision 73603

don't use string module

2013-03-04 19:19 VZ, revision 73602

Unselect all wxDataViewCtrl items when clicking outside of the item area. This is consistent with Windows behaviour and as the generic wxDataViewCtrl is mostly used under Windows, it makes sense to follow Windows convention in it. Closes #15082.

2013-03-04 12:48 VZ, revision 73601

Fix crash on wxDataViewCtrl creation after r73565. Initialize m_clientArea to NULL to avoid crash in SetFont() which is called during the control creation. This might still be not 100% correct as the initial font is not set at all for the client area but at least it fixes the crash. See #15056.

2013-03-04 11:47 JS, revision 73600

Corrected layout when scaling the control

2013-03-03 23:44 VZ, revision 73599

Fix handling of wxST_NO_AUTORESIZE in wxOSX. We do need to set the size of wxStaticText initially even when this style is specified, it only tells us to not update it later. Otherwise even the initial label was never shown in full.

2013-03-03 23:44 VZ, revision 73598

Fix hundreds of unused parameter warnings in wxOSX build. Comment out the name of the parameter in the recently added SetupTabs().

2013-03-03 18:23 SC, revision 73597

issue NUMPAD constants only for Key but not for Char events, fixes #15073

2013-03-03 13:19 VZ, revision 73596

Revert "Fix off by 1 error in wxGenericListCtrl::HitTest()." Revert r73563, this breaks the selection in the control apparently. See #15063.

2013-03-02 14:01 SC, revision 73595

enabling cursor events, fixes #15044

2013-03-02 13:11 VZ, revision 73594

Reset accelerator table after removing last accelerator in wxMSW wxMenuBar. We didn't update the accelerator table if no more accelerators were left in it but we still need to do it to stop handling the previously active accelerators. Closes #15078.

2013-03-02 13:11 VZ, revision 73593

Use more native icons in wxMSW wxArtProvider. Use SHGetStockIconInfo() and SHGetFileInfo() to look up some icons. Closes #15068.

2013-03-02 13:11 VZ, revision 73592

Enable wxUSE_FSVOLUME in configure builds. This was never set to 1 when using configure, add a configure option for it and set it to 1 by default now.

2013-03-02 13:11 VZ, revision 73591

Don't give error message for non-existent paths in wxFileSystemWatcher. The file we're trying to watch might have been just deleted, this is an unavoidable (and not only in theory but also in practice when watching busy directories) race condition so don't give an error message if this does happen but simply return false from Add(). Closes #15051.

2013-03-02 13:11 VZ, revision 73590

Interpret wxRect passed to wxRichToolTip::ShowFor() as client coords. It makes more sense to use the window coordinates here instead of the screen ones. Closes #15060.