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-01-21 12:28 VZ, revision 73426

Fix a crash in wxExecute() in wxMSW too. Don't dereference potentially NULL wxProcess pointer unconditionally. This should have been together with the changes of r73425, see #14931.

2013-01-21 12:26 VZ, revision 73425

Fix crash in wxExecute() introduced by r73406. Don't dereference potentially NULL wxProcess pointer. See #14931.

2013-01-21 12:19 VZ, revision 73424

No changes, just remove unused variable in wxCarbon code. Closes #14989.

2013-01-21 12:19 VZ, revision 73423

Add wxAUI_TB_PLAIN_BACKGROUND wxAuiToolBar style. This style allows to use a plain, solid colour, background instead of the default gradient one. Closes #10585.

2013-01-21 12:18 VZ, revision 73422

Add wxCheckListBox::GetCheckedItems() helper. This method is similar to wxListBox::GetSelections() and allows to retrieve all checked items at once. Closes #14969.

2013-01-21 12:18 VZ, revision 73421

Derive wxCheckListBox from wxCheckListBoxBase in wxGTK. This ensures that any methods defined in wxCheckListBoxBase will be available in wxGTK wxCheckListBox too. See #14969.

2013-01-21 12:11 JJ, revision 73420

OpenVMS configuration update

2013-01-21 12:04 JJ, revision 73419

OpenVMS compile support for wxSPLASH and sample

2013-01-21 09:26 SC, revision 73418

updated for 10.5 minimum

2013-01-20 23:39 VZ, revision 73415

A fix for VC6 compilation: define missing priority constants. {ABOVE,BELOW}_NORMAL_PRIORITY_CLASS aren ot defined in VC6 headers, see http://buildbot.tt-solutions.com/wx/builders/XPSP2%20VC6%20wxMSW%20trunk%20release/builds/2943/steps/compile/logs/stdio so define them ourselves.

2013-01-20 22:07 SC, revision 73414

workaround for crash, see #14906

2013-01-20 20:28 SJL, revision 73413

Pass wxWANTS_CHARS to the wxRichTextCtrl constructor in the unit tests. Fixes test failures caused by the return key being used for dialog navigation.

2013-01-20 13:53 VZ, revision 73412

Improve appearance of text with background colour in wxHTML. Use wxHTML_CLR_TRANSPARENT_BACKGROUND instead of wxHTML_CLR_BACKGROUND for the bgcolor attribute of the body tag to prevent clipping of the text cells by the next cell with opaque background. Closes #14986.

2013-01-20 13:45 VZ, revision 73411

Fix wxKeyEvent::GetPosition() after the changes of r72207. Now that the position of wxKeyEvent is initialized on demand, don't use m_x and m_y fields directly but always use GetX() and GetY(). Also improve GetPosition() documentation slightly and mention only the new version, taking wxCoord, in it as the old one, taking long, is provided for compatiblity only. Closes #14987.

2013-01-20 07:38 PC, revision 73410

no real changes, just move wxMask::GetBitmap() to wxMask section

2013-01-20 07:28 PC, revision 73409

add wxMask::GetBitmap(), closes #9381

2013-01-20 04:24 PC, revision 73408

silence GCC warning "base class ‘class wxEvtHandler’ should be explicitly initialized in the copy constructor"

2013-01-20 04:08 PC, revision 73407

sizeof(char) is 1. By definition.

2013-01-20 03:10 VZ, revision 73406

Add wxProcess::SetPriority() to allow setting the priority of child processes. This uses the same conventions as wxThread::SetPriority() but works on the entire process. Closes #14931.

2013-01-20 03:10 VZ, revision 73405

Rename WXTHREAD_XXX_PRIORITY yo wxPRIORITY_XXX. This will allow to reuse the same constants for the process priorities in an upcoming commit. See #14931.

2013-01-20 03:09 VZ, revision 73404

Fix appearance of multiline wxCheckBox with non-standard colours in wxMSW. Owner-drawn checkbox (which is used when wxCheckBox colour is changed) didn't center its label correctly and didn't right align it when using wxALIGN_RIGHT style in focused state. Closes #9628.

2013-01-20 03:09 VZ, revision 73403

Add copy constructor to wxValidator. It can be useful for implementing Clone() in the derived classes. Closes #2146.

2013-01-20 03:09 VZ, revision 73402

Fix wxDateTime::GetWeekOfYear() for the days in the last week of the year. The code took into account the possibility that the days in the beginning of the year might belong to the last week of the previous year but not that the days at the end of the year could belong to the first week of the next year. Closes #14973.

2013-01-20 03:09 VZ, revision 73401

Fix wxSearchCtrl::HasFocus() in the generic version. Override GetMainWindowOfCompositeControl() in the windows composing the generic wxSearchCtrl to ensure that HasFocus() correctly returns true for the entire control when any of them has focus. Add a trivial unit test to check that this really works and facilitate adding more tests for this class later. Closes #14970.

2013-01-20 03:09 VZ, revision 73400

Fix changing labels of menu items with bitmaps in wxMSW. We need to call SetMenuItemInfo() from wxMenuItem::SetItemLabel() even for the owner-drawn items, otherwise their width is not recomputed. Closes #3897.