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-11-20 13:49 VZ, revision 72994

Make wxSpinCtrlGenericBase a wxCompositeWindow. This takes care of propagating methods setting fonts and colours to the subwindows automatically, so that setting font for the generic wxSpinCtrl now works, unlike before. Closes #14839.

2012-11-20 13:49 VZ, revision 72993

Revert all wxNOEXCEPT-related changes. This reverts r72978, 72984, 72989 and 72992. Do not use wxNOEXCEPT for wxTextCtrl dtor as this breaks compilation of any user-defined classes inheriting from it unless they use wxNOEXCEPT as well and the benefits (fixing a harmless warning for the niche ICC compiler) are just not worth the compatibility breakage. See #14826.

2012-11-20 01:57 VZ, revision 72992

Fix another compilation problem after wxNOEXCEPT introduction. Also add wxNOEXCEPT to wxTextCtrl dtor definition in wxMSW. See #14826.

2012-11-19 19:07 VZ, revision 72990

Add wxTL_NO_HEADER style to wxTreeListCtrl. Closes #14838.

2012-11-19 19:01 VZ, revision 72989

More compilation fixes after wxNOEXCEPT introduction. This is a temporary change, r72984 and the following changes (see #14826) will probably be reverted soon anyhow, but for now at least fix wxGTK compilation. Closes #14837.

2012-11-19 14:06 SC, revision 72988

implementing delayed freezing, fixes #12865

2012-11-19 13:52 VZ, revision 72987

Add wxFSW_EVENT_UNMOUNT wxFileSystemWatcher flag and implement it for Linux. This flag generates the corresponding event when the file system containing the watched directory is unmounted. Currently it is only implemented for Linux where unmounting now generates this event instead of an error. Closes #14834.

2012-11-19 13:51 VZ, revision 72986

Convert wxFSW_EVENT_{WARNING,ERROR} to string correctly. Previously these types were not handled at all, resulting in asserts. See #14834.

2012-11-19 12:54 VZ, revision 72985

Implement wxLocale::GetSystemEncodingName() for wxOSX. Use CFStringGetNameOfEncoding() to get the canonical name of the encoding from OS X itself. Closes #2571.

2012-11-19 12:53 VZ, revision 72984

Add wxNOEXCEPT to all wxTextCtrl dtors. Fix compilation with some compilers after r72978 which added wxNOEXCEPT to wxTextCtrlBase dtor and wxTextCtrl dtor in wxMSW but not in all the other ports. See #14826.

2012-11-19 05:17 PC, revision 72983

put both versions of wxGetMousePosition in one place so they can use one implementation

2012-11-19 03:29 PC, revision 72982

fix object referencing with wxSL_MIN_MAX_LABELS

2012-11-18 01:17 VZ, revision 72981

Define SPI_GETCARETWIDTH ourselves if it's not defined. This fixes another compilation error for VC6.

2012-11-18 01:14 VZ, revision 72980

Compilation fixes for VC6 after MSWGetComboBoxInfo() introduction. Don't use COMBOBOXINFO outside of WINVER checks, we can only use tagCOMBOBOXINFO that we forward declared ourselves.

2012-11-18 00:56 VZ, revision 72979

Fix path returned from wxGTK wxFileDialog too. This is similar to the fixes to wxDirDialog in r72779. Closes #14786.

2012-11-18 00:56 VZ, revision 72978

Add wxNOEXCEPT and use it for std::streambuf-derived classes. This fixes warnings from Intel compiler about overriding function using a different exception specification than the base one and also incidentally provides a handy macro that can be useful in other situations. Closes #14826.

2012-11-18 00:56 VZ, revision 72977

Add wxFSW_EVENT_ATTRIB wxFileSystemWatcher flag. This flag allows to monitor changes to the file attributes, such as file modification time. This patch adds the flag, support for it under Linux and the corresponding modifications to the sample and the test suite. Closes #14833.

2012-11-18 00:55 VZ, revision 72976

Fix typo in include/wx/generic/private/richtooltip.h header guard. A wrong symbol was being defined.

2012-11-17 23:17 RD, revision 72966

Fix broken and missing DataView interface items for Phoenix

2012-11-17 14:34 SJL, revision 72965

Fixed unused parameter warnings for webview on OSX.

2012-11-16 08:35 PC, revision 72964

avoid deprecated functions with GTK3

2012-11-16 08:30 PC, revision 72963

silence warnings about unhandled enum value in switch

2012-11-16 08:24 PC, revision 72962

Remove code that has no effect Adjusting the wxEVT_ENTER_WINDOW mouse position is pointless, execution won't reach that far if gdk_event->window != gtk_widget_get_window(widget), and GetClientAreaOrigin() always returns (0,0).

2012-11-15 23:24 VZ, revision 72961

Support monitoring only some events in wxGTK wxFileSystemWatcher. Call inotify() with the appropriate flags instead of always using IN_ALL_EVENTS. Closes #14832.

2012-11-15 19:48 VZ, revision 72960

Restore setting focus to generic wxDataViewCtrl on any mouse click. The changes of r72632 resulted in focus not being given to wxDataViewMainWindow on right or middle click, restore this behaviour.