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-01-15 02:01 VZ, revision 70343

Correct wrong checks for wxUSE_OWNER_DRAWN. Fix the checks added in r70316, wxUSE_OWNER_DRAWN should have been used instead of inexistent and undefined wxUSE_OWNER_DRAW. See #13851.

2012-01-14 20:54 PC, revision 70342

in addition to key events, also prevent unhandled mouse events from propagating up parent chain

2012-01-14 18:57 VZ, revision 70341

Fix the size of the font returned from wxTextCtrl::GetStyle() in wxMSW. Due to a typo the size was expressed in 1/10th of a point and not in points. Fix this and add a unit test checking that GetStyle() returns the same font as was set by SetStyle(). Closes #2120.

2012-01-14 18:57 VZ, revision 70340

Update wxNotebook selection when user changes the page in wxOSX. wxNotebook::m_selection was only updated if the selected page was changed programmatically but not if it was done by the user. Do update it in this case as well, it fixes generation of the events which was broken before because of comparison of the new selection with the incorrect current selection value in m_selection.

2012-01-14 17:52 VS, revision 70339

Fix wxDataViewCtrl::GetMainWindow() signature on OS X. Return wxWindow* as other ports do, not wxControl*.

2012-01-14 17:51 VS, revision 70338

Make column width calculations in wxDataViewCtrl and wxHeaderCtrl consistent.

2012-01-13 20:03 RD, revision 70334

add post-commit to svn too

2012-01-13 19:57 RD, revision 70333

Also exclude generated wxPython html files from pre-commit checks

2012-01-13 12:36 VZ, revision 70332

Call tzset() for all compilers before using time zone variable. Changes of r66245 shouldn't have been specific to MSVC, we must call tzset() when using any other compiler as well, otherwise time zone information can be initially incorrect. Closes #13862.

2012-01-13 12:32 VZ, revision 70331

Correct handle passed to DocumentProperties() in MSW printing code. We were passing a pointer to our wrapper struct instead of the pointer stored inside it (as a HANDLE). Closes #13861.

2012-01-13 12:29 VZ, revision 70330

Update broken link to manifest documentation on MSDN. Closes #13860.

2012-01-13 09:00 JJ, revision 70329

Update makefiles for OpenVMS

2012-01-12 19:15 VZ, revision 70326

Correct wxDropSource constructors documentation. The types of the arguments (wxCursor vs wxIcon) were inversed. Even though the description correctly said that wxCursor version was used by MSW and wxIcon -- by wxGTK the converse was actually documented. Fix this and also mention OS X. Finally remove the unnecessary and useless destructor documentation. Closes #13856.

2012-01-12 19:06 PC, revision 70325

revert r70315, key event propagation should be fixed by r70324

2012-01-12 19:06 PC, revision 70324

prevent unhandled key events from propagating up parent chain

2012-01-12 15:19 VZ, revision 70322

Added Lithuanian translations. Initial translations into Lithuanian from bricsys.com.

2012-01-12 11:26 SJL, revision 70321

Add missing aui dependencies to the notebook sample.

2012-01-11 14:42 VS, revision 70318

Don't react to Enter/Space/F2 with modifiers in generic wxDataViewCtrl. Doing so was in conflict with system shortcuts; Alt+Space in particular is used by Windows.

2012-01-11 14:42 VZ, revision 70317

Only declare wxDialog::SetWindowStyleFlag() when wxUSE_DIALOG_SIZEGRIP. This method was only defined when wxUSE_DIALOG_SIZEGRIP==1 so avoid declaring it when wxUSE_DIALOG_SIZEGRIP==0 to fix compilation in this case (i.e. under Windows CE). Closes #13852.

2012-01-11 14:42 VZ, revision 70316

Add wxUSE_OWNER_DRAW checks to wxMSW wxMenu code. Allow compiling with wxUSE_OWNER_DRAW==0. This fixes another problem in Windows CE build where owner drawn menus are not supported. Closes #13851.

2012-01-11 00:11 VZ, revision 70315

Fix UI in generic wxListCtrl when pressing cursor arrows while editing. Pressing Up/Down keys while editing an item changed the selection but left the in-place editing control on the previously selected item which was just wrong. Ignore these keys to avoid it. Notice that there is an underlying bug somewhere in wxGTK because we shouldn't be getting these events in the first place while the in-place editing text control has focus but it doesn't seem easy to fix so work around it here.

2012-01-10 18:09 DS, revision 70314

Fixed clicking on MSW slider not changing value with small ranges. If the range was 9 or less the SetPageSize call would pass a page size of 0, resulting in the value not being changed when clicking on the slider area (outside the thumb). Fix this by at least passing a page size of 1 to SetPageSize. Closes #1608.

2012-01-10 18:01 VZ, revision 70313

Fix wxFrame::AttachMenuBar() compilation under Windows CE. There was a typo in GetHwnd() call. Closes #13848.

2012-01-10 18:01 VZ, revision 70312

Use wxAbort() instead of abort() to fix Windows CE build. abort() is not defined under CE. Closes #13847.

2012-01-10 18:01 VZ, revision 70311

Added wxAbort() which can also be used under Windows CE. Windows CE doesn't have abort() so provide a wrapper which can be used even there (see #13847).