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

2007-04-23 20:11 VZ, revision 45606

don't select the window about to be deleted as parent for modal dialog in ShowModal()

2007-04-23 20:09 VZ, revision 45605

use GetParentForModalDialog() in ShowModal() to ensure we don't select a window being deleted as parent

2007-04-23 20:07 VZ, revision 45604

test that the candidate parent window isn't being deleted (this would result in a crash later)

2007-04-23 15:37 PC, revision 45603

revert move events change, it blocks programmatic move events as well

2007-04-23 15:16 VZ, revision 45602

remove wxWindow::m_needParent and use GTKNeedsParent() which can be overridden in just wxMenuBar (and not set in each and every wxGTK control)

2007-04-23 09:28 RR, revision 45601

Typo in docs [ 1693034 ] 2.8.3: wrong docs for wxCHECK_W32API_VERSION

2007-04-23 04:44 PC, revision 45600

don't send move events for size changes

2007-04-23 04:33 PC, revision 45599

fix return type for "map_event" and "unmap_event" handlers

2007-04-23 00:45 VZ, revision 45598

don't use wxLocale if wxUSE_INTL==0 (fixes 2nd part of bug 1692898)

2007-04-23 00:43 VZ, revision 45597

define wxGetTranslation() as (trivial) inline function, not macro, in wxUSE_INTL==0 case to allow compilation of the code using its second domain argument (fixes bug 1692898)

2007-04-22 23:14 VZ, revision 45596

really ensure that the window being centered is fully visible (fixes bug reported in patch 1683239); also place it on the same display as its parent, if any [backport from HEAD]

2007-04-22 23:07 VZ, revision 45595

really ensure that the window being centered is fully visible (fixes bug reported in patch 1683239); also place it on the same display as its parent, if any

2007-04-22 22:20 VZ, revision 45594

compilation fixes for PCH-less build

2007-04-22 21:25 VZ, revision 45593

added wxStdDialogButtonSizer test (patch 1705382)

2007-04-22 21:19 VZ, revision 45592

detect if there was an error in standard GTK+ options processing and exit in such case

2007-04-22 21:18 VZ, revision 45591

update wxApp::argc/argv to remove the options parsed by GTK+ itself from them [backport from HEAD]

2007-04-22 21:17 VZ, revision 45590

update wxApp::argc/argv to remove the options parsed by GTK+ itself from them

2007-04-22 20:54 VZ, revision 45589

added wxAppTraits::GetStandardCmdLineOptions() allowing to add the description of the standard toolkit options to the usage message and implement it for wxGTK2 (patch 1703077)

2007-04-22 20:34 VZ, revision 45588

added wxDialog::GetParentForModalDialog() and use it to try to always create modal dialogs with a parent (slightly modified patch 1702962)

2007-04-22 20:30 VZ, revision 45587

added HasExtraStyle()

2007-04-22 20:27 VZ, revision 45586

don't pass unneeded arguments to AdustForGrowables()

2007-04-22 20:20 VZ, revision 45585

add m_ prefix to the member variables and remove unneeded dialogParent field (part of patch 1702962)

2007-04-22 19:32 VZ, revision 45584

don't leave pixels due to rounding errors in wxBoxSizer, allocate the extra pixels to the last item(s) instead, as wxFlexGridSizer (now) does

2007-04-22 19:20 VZ, revision 45583

Many changes/fixes to wxFlexGridSizer implementation (no API changes): - fix the problems addressed by the patch 1667343: * only distribute extra space between growable items, not all space * take hidden items and gaps into account for ALL grow mode layout * fix rounding errors by allocating the remaining pixels to the last item(s) - refactor the code to avoid duplication between row/column cases - use STL-like wxList methods instead of compatibility ones

2007-04-22 17:49 VZ, revision 45582

don't let def window proc start another drag operation if we just started one ourselves for a multiselection tree (replaces patch 1702133) [backport from HEAD]

2007-04-22 17:47 VZ, revision 45581

updated SetFont() documentation: it returns bool, not void (bug 1705330)

2007-04-22 17:43 PC, revision 45580

fix double to int conversion warning

2007-04-22 15:17 VZ, revision 45579

don't leave gaps around hidden columns/rows in wxFlexGridSizer (closes bug 1659872; part of patch 1667343) [backport from HEAD]

2007-04-22 15:14 VZ, revision 45578

don't leave gaps around hidden columns/rows in wxFlexGridSizer (closes bug 1659872; part of patch 1667343)

2007-04-22 12:50 VZ, revision 45577

distribute only the extra, free, space according to the items proportions in wxBoxSizer and not the entire available space

2007-04-22 12:31 VZ, revision 45576

(blind) compilation fixes after latest changes

2007-04-22 00:18 KO, revision 45575

Backport of key handling and selection fixes.

2007-04-22 00:04 VZ, revision 45574

don't pass 0 time_t to Borland localtime(), it crashes (bug 1704438); also check for error return from both localtime() and gmtime() [backport from HEAD]

2007-04-22 00:03 VZ, revision 45573

don't pass 0 time_t to Borland localtime(), it crashes (bug 1704438); also check for error return from both localtime() and gmtime()

2007-04-21 23:24 VZ, revision 45572

allow having children of status bar in XRC (patch 1704125) [backport from HEAD]

2007-04-21 23:17 KO, revision 45571

Backporting support for adding wx Window menu items into the system Window menu.

2007-04-21 23:01 KO, revision 45570

Return wx menu items inserted into the Window system menu, similar to what we do for Help and application menus.

2007-04-21 21:44 KO, revision 45569

Fix bug with m_current causing EVT_LIST_KEY_DOWN events not to fire in virtual mode, also added handler for navigation keys and tweaked the virtual code for setting selection.

2007-04-21 21:14 VZ, revision 45568

don't let def window proc start another drag operation if we just started one ourselves for a multiselection tree (replaces patch 1702133)

2007-04-21 19:29 VZ, revision 45567

added support for image resolution options to PNG handler (heavily modified patch 1704128)

2007-04-21 18:57 VZ, revision 45566

allow having children of status bar in XRC (patch 1704125)

2007-04-21 18:50 VZ, revision 45565

readded wxEditableListBox as part of adv library

2007-04-21 18:32 VZ, revision 45564

added safe check for Pango version and use it to avoid underline hack in wxDC::DrawText() (modified patch 1702301)

2007-04-21 18:17 VZ, revision 45563

add missing dynarray.h includes (patch 1702312) [backport from HEAD]

2007-04-21 18:13 VZ, revision 45562

add missing dynarray.h includes (patch 1702312)

2007-04-21 18:11 VZ, revision 45561

added wxStreamBuffer::Truncate() (patch 1687081)

2007-04-21 17:02 PC, revision 45560

remove redundant GTK_WIDGET casts

2007-04-21 15:13 VZ, revision 45559

fix WXDLLIMPEXP_STC definition when building all wx libraries as DLLs (patch 1704527)

2007-04-21 15:10 VZ, revision 45558

fix bug with not updating the last line correctly when a group was deleted and recreated (bug 1685312) [backport from HEAD]

2007-04-21 15:04 VZ, revision 45557

fix bug with not updating the last line correctly when a group was deleted and recreated (bug 1685312); added a unit test for this