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

2009-09-06 16:31 VZ, revision 61843

Use SYSTEMTIME instead of DOS time when converting to/from VARIANTS. SYSTEMTIME has a much larger range than DOS time and a much better precision (1ms instead of 2s) as well. Closes #11177.

2009-09-06 16:31 VZ, revision 61842

Take time into account in wxDateTime <-> SYSTEMTIME conversion. wxDateTime::SetFromMSWSysTime() and GetAsMSWSysTime() worked with the date part of SYSTEMTIME only, do use time part as well now. Closes #11176.

2009-09-06 10:35 JMS, revision 61840

Do not allow multiple selection when dragging in the 'value' column

2009-09-06 09:53 JMS, revision 61839

Fixed property iterator crash when iterating through 'non-interesting' properties at the edges of the grid.

2009-09-06 09:51 JMS, revision 61838

Added check to allow multiple selection by dragging only if property under mouse was adjacent to a property already in the selection.

2009-09-05 16:24 VZ, revision 61837

Perform Apple SDK tests for Mac ports only. Fix after changes of r61832: SDK checks should be done for Mac ports only as they are useless under the other systems and break configure because sw_vers is Mac-only and unsurprisingly using it results in errors under the other systems: /usr/local/src/wx/HEAD/configure: line 18215: sw_vers: command not found checking if C compiler works with SDK/version options... configure: error: no. Try a different SDK

2009-09-05 15:23 JMS, revision 61836

Fixed GtkBorder allocation (hopefully)

2009-09-05 14:39 VZ, revision 61835

Really fix compilation of wxURLDataObject. Conversion from char* to wxString doesn't exist in 2.8, need to do it explicitly. Closes #11102.

2009-09-05 14:39 JMS, revision 61834

wxTextEntry::SetMargins(), GetMargins() - implemented on wxMSW and wxGTK (GTK+ 2.10+); also added similar functions into wxComboCtrl, deprecated old indent-functions; wxPropertyGrid modified to use the new functionality

2009-09-05 14:29 VZ, revision 61833

Clarify the separator native look remark. Closes #11174.

2009-09-05 02:12 KO, revision 61832

If gcc-4.2+ is specified for compiling OS X Carbon or 10.4 compatilbility is specified, switch to gcc-4.0 to avoid configuration conflicts. Also, do not default to 10.4 compatibility when building OS X Cocoa so that we can get 64-bit builds on Snow Leopard by default.

2009-09-04 21:10 VZ, revision 61830

Fix bug in wxTreeCtrl::ItemHasChildren() for virtual root item. Backport of r58177 from trunk, see #11169.

2009-09-04 18:21 VZ, revision 61829

Enable debug information in release builds for msvc makefiles too. Debug information was enabled for release builds for MSVC project files but not the makefiles which was inconsistent, correct this.

2009-09-04 18:20 VZ, revision 61828

Implement wxSTAY_ON_TOP for wxMessageDialog in wxGTK. Call gtk_window_set_keep_above() to force the message dialog to be above the other windows (some WMs do this by default anyhow but not all). Closes #11163.

2009-09-04 18:20 VZ, revision 61827

Document wxFileName::SetPath(). Closes #11162.

2009-09-04 02:29 VZ, revision 61826

Another compilation fix after r61814. wxDECLARE_NO_COPY_CLASS() doesn't exist in 2.8, only DECLARE_NO_COPY_CLASS() does.

2009-09-04 02:27 VZ, revision 61825

Fix regression with logging messages during wxApp initialization. Changes in r61450 broke logging of the messages for errors occurring during wxApp initialization, such as the message about the failure to establish connection to the X server. Instead of being shown on stderr, wxLogGui was used resulting in a crash. Creating wxLogOutputBest in wxLog code before wxTheApp creation was not enough as this error occurred after wxTheApp creation -- but before it became usable. Fix this by explicitly asking wxLog to instantiate a safe log target in DoCommonPreInit() if the user hadn't set up his own yet and using it until the GUI is fully initialized.

2009-09-03 13:38 VZ, revision 61821

Tweak the default wxApp::GetAppDisplayName() logic. Don't capitalize the app name if it had been explicitly set with SetAppName() as this can result in unexpectedly wrong value. Do capitalize the program name which is used as app name by default and don't store the program name in m_appName to be able to distinguish between the two cases. Closes #11165.

2009-09-03 13:03 VZ, revision 61820

Compilation fix after r61814. Trunk change was not completely merged and broke the build, fix it.

2009-09-03 02:32 VZ, revision 61814

Fix off by one errors and buffer overflows in wxURLDataObject. Backport of r61787 and r61788 from trunk. Closes #11102.

2009-09-03 02:24 VZ, revision 61813

React to errors on socket correctly when using epoll(). Even though the socket is not registered for wxFDIO_EXCEPTION events, wxEpollDispatcher will currently generate them anyhow so we shouldn't assert if wxSocketImplUnix::OnExceptionWaiting() is called. Instead, notify the socket about the connection loss if this happens. Closes #11085.

2009-09-03 02:24 VZ, revision 61812

Clarify the priority rules for static and dynamic handlers. See #11156.

2009-09-03 02:16 VZ, revision 61811

Fix SetToolTip(NULL) in newer GTK versions. Backport of r61549 from HEAD. Closes #11158.

2009-09-01 16:44 JMS, revision 61804

Normalize property label editor margins on wxMSW

2009-09-01 16:11 JMS, revision 61803

Only respect property's wxPG_PROP_READONLY flag for the 'value' column