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-07-26 01:13 VZ, revision 61535

Implement wxWindow::GetToolTipText(). This was declared in wx/window.h but somehow never implemented.

2009-07-26 00:53 VZ, revision 61534

Allow setting long version field in About dialog. Long version is constructed by concatenating "Version " with the short version but can be overridden for the platforms which use it (currently MSW and OS X). Closes 11027.

2009-07-26 00:26 VZ, revision 61533

Clear targets in wxClipboard::Clear(). This seems to fix a memory leak rendering clipboard unusable after running wxGTK applications for a long time (see #10813).

2009-07-26 00:26 VZ, revision 61532

Move #error for non-MSVC to the top of file. This allows to reduce indentation of the rest of it and avoid a very long #if...#else.

2009-07-26 00:26 VZ, revision 61531

Add support for stc library. Closes #11025.

2009-07-25 19:09 VZ, revision 61530

Fix harmless MSVC warning. It complained about converting pointer to bool implicitly in wxAppConsoleBase::IsScheduledForDestruction().

2009-07-25 18:41 VZ, revision 61529

Don't use mnemonic for Cancel button under MSW. Native dialogs don't, so we shouldn't neither.

2009-07-25 18:41 VZ, revision 61528

Use stock id instead of duplicating its string label in CheckFit().

2009-07-25 18:41 VZ, revision 61527

Use wxSTOCK_FOR_BUTTON for message dialog custom labels. This allows to use wxID_PRINT as a custom label without getting an unwanted ellipsis at the end.

2009-07-25 18:41 VZ, revision 61526

Added wxSTOCK_FOR_BUTTON flag for wxGetStockLabel(). This allows to retrieve labels appropriate for the buttons and not menu items which currently means without trailing ellipsis.

2009-07-25 18:40 VZ, revision 61525

Correct wxGetStockLabel() documentation. It was completely out of date; also separately documented wxStockLabelQueryFlag.

2009-07-25 18:40 VZ, revision 61524

Use Ok/Cancel dialog instead of Yes/No one in CheckFit(). This has the advantage of being able to close the dialog with "Esc" and also allows us to not specify the label for the "Cancel" button at all and use the default one, which is especially important under MSW where the label returned by wxGetStockLabel(wxID_CANCEL) is actually not the same string as is used in the native message boxes (they don't define an accelerator for the cancel button).

2009-07-25 18:40 VZ, revision 61523

Add a period to the sentence end.

2009-07-25 18:40 VZ, revision 61522

Set all parent frame icons for print preview frame. Using SetIcon(GetIcon()) resulted in ugly scaled icons being used for small icons while using SetIcons(GetIcons()) correctly reuses all parent frame icons in the child one.

2009-07-25 03:28 PJC, revision 61519

Fixed bug in ribbon panel auto-minimisation logic. Fixed gallery using wrong padding metrics. Fixed ribbon panel not always conforming to the GetNextSmallerSize interface when auto-minimising. Added ribbon gallery visual hovered state. Added ribbon gallery button art settings. Added drawing of ribbon gallery button backgrounds. Added missing breaks to case statements of art provider setting setters. Improved code layout of art provider setting setters and getters. Improved generation of gallery items in ribbon sample.

2009-07-24 23:20 SC, revision 61518

implementing checkbox using UISwitch

2009-07-24 14:35 VZ, revision 61513

Remove inexistent wx/osx/carbon/databrow.h file.

2009-07-24 14:34 VZ, revision 61512

Fix harmless unused parameter warning. 'info' was only used with WXWIN_COMPATIBILITY_2_8 on in wxLog::DoLogRecord().

2009-07-24 01:34 VZ, revision 61511

This is apparently needed by Windows installer (WiX), see #10970.

2009-07-24 01:28 VZ, revision 61510

They seem to have been inversed, see #10970.

2009-07-24 01:01 VZ, revision 61509

Always correctly invalid best size when bitmap changes. Previously it was done only when the initial bitmap was set, not when it was subsequently changed. Closes #11018.

2009-07-23 22:30 VZ, revision 61508

Globally replace _T() with wxT(). Standardize on using a single macro across all wxWidgets sources and solve the name clash with Sun CC standard headers (see #10660).

2009-07-23 19:31 VZ, revision 61507

Implement wxGetHostName() for Windows CE.

2009-07-23 17:01 VZ, revision 61506

Fix crash when copying Unicode URLs to the clipboard. Closes #11014.

2009-07-23 15:40 VZ, revision 61505

Implement wxVLogTrace() accidentally removed by recent changes. Also change the unit test to test wxVLogTrace() as well as wxLogTrace. Closes #11011.