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

2008-12-25 18:29 VZ, revision 57546

use void pointers, not char ones, in socket IO functions

2008-12-25 17:03 VZ, revision 57545

fix wxURL::GetInputStream() for URLs with special characters in credentials (closes #10265)

2008-12-25 16:47 VZ, revision 57544

use wxSUPPRESS_DOLOG_HIDE_WARNING to suppress warnings about hiding base class DoLog() overloads

2008-12-25 13:10 VZ, revision 57543

don't use the client data for storing wxOwnerDrawn in wxCheckListbox implementation as we already store them in internal array anyhow, this allows the user to use his own client data with wxCheckListbox (#10290)

2008-12-25 13:03 VZ, revision 57542

make colours used by list and tree controls more consistent with the system theme settings; also use the correct colour for the status bar (closes #10089)

2008-12-25 12:45 VZ, revision 57541

unhide the second wxTextAreaBase::HitTest() overload to suppress a warning about it

2008-12-25 12:41 VZ, revision 57540

fix/suppress warning about hiding base class Load(wxURI,wxURI) overload

2008-12-25 12:38 VZ, revision 57539

don't use deprecated OnScroll()

2008-12-25 12:27 VZ, revision 57538

make Scroll() itself virtual too as existing code might override it (but new code should override DoScroll() only); use the same access in the derived classes as in wxScrollHelperBase

2008-12-25 12:23 VZ, revision 57537

deprecate OnScroll() which existed for compatibility only even before

2008-12-24 23:46 VZ, revision 57536

handle correctly never/always shown scrollbars in GetClientSize()

2008-12-24 21:58 VZ, revision 57535

allow passing -1 range to SetScrollbar() to indicate the the scrollbar should be disabled and use this to implement wxSHOW_SB_ALWAYS in the generic wxScrollHelper

2008-12-24 20:52 KO, revision 57534

Make sure the files in contrib all get their lib names and links updated properly.

2008-12-24 20:17 KO, revision 57533

Tweaks for finding the configure script.

2008-12-24 17:13 VZ, revision 57532

compilation fix after wxScrollHelperNative renaming to wxScrollHelper

2008-12-24 16:43 VZ, revision 57531

further untangle generic and native GTK implementations of wxScrollHelper: use the standard wxScrollHelperBase/wxScrollHelper naming convention and move the stuff unused by GTK in the generic implementation

2008-12-24 16:11 VZ, revision 57530

provide generic implementation for ShowScrollbars() too

2008-12-24 15:58 VZ, revision 57529

add wxScrollHelper::ShowScrollbars() (implemented for GTK only right now, generic implementation coming soon)

2008-12-24 15:45 RR, revision 57528

Mark alpha a static data (not to be freed), too

2008-12-24 15:11 VZ, revision 57527

add convenient GetViewStart() and Scroll() overloads taking wxPoint instead of 2 int[ pointer]s

2008-12-24 14:55 VZ, revision 57526

add example of synchronizing 2 scrolled windows

2008-12-24 07:51 PC, revision 57525

fix saving/restoring size when WM supports _NET_FRAME_EXTENTS but not _NET_REQUEST_FRAME_EXTENTS

2008-12-24 01:28 VZ, revision 57523

reorganize scroll sample to make it possible to understand what it does both when reading its code and when running it; merged scrollsub sample in it and removed the original one

2008-12-24 00:41 VZ, revision 57522

call wxFlexGridSizer::AddGrowableRow() only when the sizer has enough rows for the indices to be valid

2008-12-24 00:35 VZ, revision 57521

correct the direction of the comparison between the number of columns/rows and the number of items (#10294)

2008-12-24 00:29 VZ, revision 57520

also call AddGrowableRow/Col() for wxGridBagSizer

2008-12-23 22:33 VZ, revision 57519

call wxFlexGridSizer::AddGrowableRow/Col() only after creating the sizer children, otherwise row/col index could be out of range (#10294)

2008-12-23 20:46 RR, revision 57518

Don't allow concurrent requests, check return message of async request

2008-12-23 20:09 JMS, revision 57517

Fixed crash when expanding/collapsing categories too quickly (re-entrancy issue)

2008-12-23 16:38 BP, revision 57516

Added grid event classes to the events group in docs.

2008-12-23 15:33 JMS, revision 57515

Fixed a VC6 warning (hopefully)

2008-12-23 15:32 VZ, revision 57514

don't use \u escapes, VC6 doesn't understand them

2008-12-23 15:29 VZ, revision 57513

set correct properties for the new files

2008-12-23 14:57 RR, revision 57512

wxDataViewCtrl::IsExpanded should work now under OS X, as well

2008-12-23 14:56 RR, revision 57511

Add wxDataViewCtrl::ExpandAncestors() and call it from both EnsureVisible() and Select()

2008-12-23 12:05 RR, revision 57510

Added pseudo-asynchronous clipboard implemenation to all ports excepts for GTK+

2008-12-23 00:35 VZ, revision 57509

reverted yet another accidental commit of testing code in r57505

2008-12-23 00:21 VZ, revision 57508

verify that we don't have more items than our number of rows/columns allows (See #10294)

2008-12-23 00:20 VZ, revision 57507

use wxFlexGridSizer correctly (fixes #10294)

2008-12-22 22:58 VZ, revision 57505

split wxEVT_GRID_CELL_CHANGE into wxEVT_GRID_CELL_CHANGING/ED pair for consistency with all the other controls; provide access to new/old value of the cell in the event object

2008-12-22 22:44 VZ, revision 57504

no changes, just don't use "any more" thrice in a row

2008-12-22 21:42 VZ, revision 57503

use CanSetValueAs() instead of CanGetValueAs() in wxGridCellBoolEditor::EndEdit

2008-12-22 19:52 VZ, revision 57502

avoid warnings about localtime() being deprecated from MSVC8/9 by just not using it from a header

2008-12-22 19:50 VZ, revision 57501

correct Serbian locale name: should be sr_RS, not sr_SR (fixes #10295)

2008-12-22 17:11 PC, revision 57500

non-pch build fixes

2008-12-22 14:03 RR, revision 57498

Added clipboard sample check to configure.in, other changes after rebaking with Bakefile 0.25

2008-12-22 13:34 VZ, revision 57497

undid change accidentally committed as part of r57093 but which didn't have anything to do with it and resulted in #10253

2008-12-22 12:03 VZ, revision 57496

fix typo in r57455 which totally broke modal dialogs display (close #10291)

2008-12-22 11:52 VZ, revision 57495

rebake after correction typo in wx/generic/headerctrlg.h name

2008-12-22 06:26 BP, revision 57494

Fixed regression in r57474 (this is the 2.8 branch, not trunk, treat strings like so).