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

2014-06-05 02:28 VZ, revision 76666

Fix spurious assert when creating multiline wxTextCtrl from XRC. Don't try to set the hint unconditionally, this doesn't work with multiline text controls and so resulted in an assert when trying to create one from XRC since the changes of r76629. Closes #16317.

2014-06-05 02:26 VZ, revision 76665

Stop Scintilla timer when the control doesn't have focus. This avoids excessive CPU load due to generating completely unnecessary timer notifications for every wxSTC control in a program. Closes #14938.

2014-06-05 00:47 VZ, revision 76664

Add cast to wxWindow to fix wxUniv/MSW compilation. wxWindowMSW is different from (base class of) wxWindow in wxUniv and needs to be converted to it explicitly.

2014-06-05 00:47 VZ, revision 76663

Including missing header for wxUniv/MSW build. Compilation fix after the changes of r76657, see #16265.

2014-06-04 23:34 VZ, revision 76662

Compilation fix to wxMSW tooltip code when not using PCH. Include the required header when not using PCH. See #16265.

2014-06-04 23:15 VZ, revision 76661

Polish translations update from Mariusz Drozdowski.

2014-06-04 22:55 VZ, revision 76660

Polish translations update from Mariusz Drozdowski.

2014-06-02 20:14 VZ, revision 76659

Compilation fix for wxMSW 64 bit build with icc. This compiler doesn't want to narrow INVALID_HANDLE_VALUE to int, so use wxUIntPtr instead. See #16233.

2014-06-02 15:15 VZ, revision 76658

Explicitly convert int to HANDLE to fix 64 bit wxMSW build. This fixes g++ compilation problem in 64 bit mode after the changes of r76653, it complained about comparing pointer (HANDLE) with an integer. It might also fix compilation with icc. See #16233.

2014-06-02 03:15 VZ, revision 76657

Hide tooltip when its associated window is hidden in wxMSW. Don't leave the tooltip shown on screen if the window it was shown for was hidden or iconized (without moving the mouse, as that would have dismissed the tooltip as well). Closes #16265.

2014-06-02 03:15 VZ, revision 76656

Fix bug with removing items from menus with radio buttons in wxMSW. Update the indices of the radio groups after removing an item from the menu. See #14213.

2014-06-02 03:15 VZ, revision 76655

Use wxWinAPI::Event wrapper class instead of raw Windows event handles. This makes the code slightly shorter and, more importantly, more readable and safer. Closes #16233.

2014-06-02 03:15 VZ, revision 76654

Add a simple wrapper for Windows event handle object. This will be used instead of raw events in wxMSW code in the upcoming commit. See #16233.

2014-06-02 03:15 VZ, revision 76653

Allow wxMSW AutoHANDLE helper to be used with more kinds of handles. Make AutoHANDLE a template to allow specifying the invalid handle value, which is inconsistent across Win32 API and is INVALID_HANDLE_VALUE for most kinds of handles but 0 for some others, e.g. event object handles. See #16233.

2014-06-02 03:15 VZ, revision 76652

Ensure that wxPreviewCanvas always gets idle event. Use wxWS_EX_PROCESS_IDLE flag to ensure that the print preview receives idle events even when wxIDLE_PROCESS_SPECIFIED global idle mode is used. Closes #15104.

2014-06-02 03:15 VZ, revision 76651

Allow access to the currently shown wxInfoBar buttons. Add wxInfoBar::GetButtonCount(), GetButtonId() and HasButtonId() methods. Closes #15110.

2014-06-02 03:13 VZ, revision 76650

Fix bug with removing items from menus with radio buttons in wxMSW. Update the indices of the radio groups after removing an item from the menu. See #14213.

2014-06-02 02:16 VZ, revision 76649

Revert "Correctly detect cancelled drag-and-drop operations in wxGTK." This reverts r75745 (and r75749 fixing a minor problem in it) as this change broke the reporting of the result of the drag and drop operation instead of fixing it. See #15930.

2014-06-01 18:46 VZ, revision 76648

Document that wxCANCEL_DEFAULT doesn't work in wxOSX/Cocoa. See #16268.

2014-06-01 18:46 VZ, revision 76647

Don't check for model in wxDataViewCtrl::InsertColumn() in wxOSX. This isn't done in neither generic nor the GTK versions and prevents from inserting the columns into the control before associating a model with it. Closes #16257.

2014-06-01 18:44 VZ, revision 76646

Document that wxCANCEL_DEFAULT doesn't work in wxOSX/Cocoa. See #16268.

2014-06-01 18:30 VZ, revision 76645

Don't check for model in wxDataViewCtrl::InsertColumn() in wxOSX. This isn't done in neither generic nor the GTK versions and prevents from inserting the columns into the control before associating a model with it. Closes #16257.

2014-06-01 18:28 VZ, revision 76644

Relax checking window visibility in wxGLCanvas::SetCurrent(). It is enough for the window to be shown for SetCurrent() to work, it doesn't have to be actually visible on screen, and checking for this using IsShownOnScreen() resulted in false positives. Closes #16193.

2014-06-01 18:27 VZ, revision 76643

Relax checking window visibility in wxGLCanvas::SetCurrent(). It is enough for the window to be shown for SetCurrent() to work, it doesn't have to be actually visible on screen, and checking for this using IsShownOnScreen() resulted in false positives. Closes #16193.

2014-06-01 18:23 VZ, revision 76642

Don't leak sort descriptors array in wxDataViewCtrl in wxOSX. wxCocoaOutlineDataSource owns its sortDescriptors field, so it must release it in its dealloc() (and also initialize it in its init(), no idea how did it work without this being done before). Closes #16231.