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
Changelog for wxWidgets (70435 changes):
2012-12-28 17:02 VZ, revision 732892012-12-28 17:02 VZ, revision 73288Remove connection of MyDllApp::OnIdle() handler in the dll sample. This method didn't really exist, the code only worked because it connected to wxApp::OnIdle() which exists in wxMSW but not the other ports. Simply remove the apparently unnecessary call. See #13902.
2012-12-28 17:02 VZ, revision 73287No changes, just avoid unused variable in wxUSE_TOOLTIPS==0 build. Move the declaration of a variable only used for tooltip setting inside "#if wxUSE_TOOLTIPS" test. Closes #14927.
2012-12-28 17:01 VZ, revision 73286Use a single taskbar icon for all notifications in wxMSW. Allocating a new icon for every notification could result in showing many identical icons in the taskbar notification area if several notification messages were generated which looked like a bug to the user. It was also inconsistent with the behaviour in the case when UseTaskBarIcon() was called. Always behave as in the latter case now, i.e. any subsequent notification replaces the previous one instead of being shown in addition to it.
2012-12-28 14:15 SC, revision 73285Remove extra "#" operator in wxFAIL_COND_MSG macro. The argument of this macro is already a string, so we don't need to stringify it again. This fixes VC6 build, unlike all the other compilers this one didn't apply "#" to an argument which was already a quoted string correctly.
2012-12-28 02:50 PC, revision 73284silence unused var warning
2012-12-28 01:44 VZ, revision 73283non-pch build fix
2012-12-28 01:44 VZ, revision 73282Fix regression with wxHTML table elements background handling. Wrong background was used for the text inside HTML tables since r72589, fix this by setting the correct background before processing the table elements and restoring it after doing it. Closes #14909.
2012-12-28 01:44 VZ, revision 73281Ensure that client display rectangle is always less than its total area. Under Unix we could return client display rectangle that was bigger than the entire display size as it corresponded to the total screen size when _NET_WORKAREA was not supported or was not correctly implemented by the WM. Fix this by explicitly intersecting the client rect with the total one. Closes #14419.
2012-12-28 01:44 VZ, revision 73280Document wxListBox and wxChoice as inheriting from wxItemContainer. Due to an apparent Doxygen bug, methods inherited from wxItemContainer via wxControlWithItems didn't appear in the documentation, so work around this by using wxItemContainer as a direct base class. Closes #14882.
- M /wxWidgets/trunk/include/wx/any.h
- M /wxWidgets/trunk/include/wx/defs.h
- M /wxWidgets/trunk/include/wx/math.h
2012-12-28 01:43 VZ, revision 73279Add wxGCC_WARNING_{SUPPRESS,RESTORE} macros and use them for -Wfloat-equal. Suppress the warnings about comparing floating point values for equality in wxWidgets headers when the user code is compiled with -Wfloat-equal (at least when using g++ 4.6 or later). Closes #14895.
2012-12-28 01:43 VZ, revision 73278No changes, just don't initialize the variable twice. Remove the inactive code probably copy-and-pasted from somewhere else. Closes #14924.
2012-12-27 06:59 PC, revision 73277No changes, just remove an unused variable. Closes #14923.
2012-12-27 06:28 PC, revision 73276Use proper reference counting on GtkMenuItem that we keep a pointer to Fixes crash that occurs with Ubuntu libdbusmenu See #14292
2012-12-26 18:47 PC, revision 73271Better fix for avoiding warnings from Ubuntu libdbusmenu Previous workaround from r71648, modified in r72560, broke MDI child menu handling See #14292
2012-12-26 18:32 PC, revision 73270remove unused private member m_ordered from wxDataViewVirtualListModel
2012-12-23 20:28 SC, revision 73269fix consruction of string thanks to clang for finding this one
2012-12-23 20:04 SJL, revision 73268removing 10.5 version checks
2012-12-23 19:44 SC, revision 73267Fix webview compilation for the mingw-w64 compiler.
2012-12-23 19:42 SC, revision 73266removing outdated code
2012-12-23 16:46 SC, revision 73265making sure we are using correct implementation for shades
2012-12-23 12:50 SC, revision 73264adding isFlipped to userpane
- M /wxWidgets/trunk/include/wx/osx/cocoa/chkconf.h
- M /wxWidgets/trunk/include/wx/osx/cocoa/private.h
- M /wxWidgets/trunk/src/osx/cocoa/datetimectrl.mm
- M /wxWidgets/trunk/src/osx/cocoa/statbox.mm
- M /wxWidgets/trunk/src/osx/cocoa/window.mm
2012-12-23 12:33 VZ, revision 73263try support for native isFlipped usage and coalesce update rects into bounding box by default
2012-12-22 22:31 JS, revision 73258Fix wrong tab order in wxAuiNotebook after dragging. Update the tab index correctly to keep tabs list and windows list in sync. Closes #10848.
2012-12-22 13:51 VZ, revision 73257Fix for bug #14915 - wxRichTextCtrl: Not able to move up to empty first line
Sort wxPAPER_XXX constants alphabetically in the documentation. This makes it much simpler to find the one you want. See #14919.