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-02-03 12:02 VZ, revision 58635

added wxPersistentRegisterAndRestore() function to work around VC6 brokenness in debug DLL build

2009-02-03 12:01 VZ, revision 58634

renamed wx/ptr_shrd.h to wx/sharedptr.h; split wx/ptr_scpd.h in wx/scopedptr.h and wx/scopedarray.h; extracted common parts into new wx/checkeddelete.h

2009-02-03 10:42 RR, revision 58633

Add space all around std buttons as per Apple HIG (and as the comment in the code says but the code didn't do)

2009-02-03 09:53 RR, revision 58632

Also report events from wxCollapsiblePane's label

2009-02-03 08:51 RR, revision 58631

Removed accidentally committed debug code

2009-02-02 21:44 VZ, revision 58629

work around VC6 ICE in DLL build

2009-02-02 21:40 VZ, revision 58628

compilation fix for template Connect()

2009-02-02 21:09 VZ, revision 58627

use explicit this-> with non-dependent names (compilation fix for standard-conforming compilers such as g++ 4)

2009-02-02 20:46 VZ, revision 58626

use wxCommandEventHandler instead of manually writing several casts

2009-02-02 20:38 VZ, revision 58625

Changes to template Connect() to make it compile with MSVC7 and possible other not quite up-to-date compilers, to reduce repetitions and to allow using methods of non-wxEvtHandler-derived classes as event callbacks: 1. Don't rely on compiler ability to deduce template parameter from the type of a parameter of a function used as another template parameter, at least MSVC7 can't do this and it's probably not the only one. 2. Do rely on compiler support for partial specialization to make wxEventFunctorMethod compile for non-wxEvtHandler-derived handlers while still keeping the old functionality for the wxEvtHandler-derived ones. 3. Don't make any difference between functions and functors, both are callable objects so use them as such, this allows to fold code for both cases. 4. Avoid the use of dynamic_cast<>. 5. Several naming changes: a) wxTypedEventType -> wxEventTypeTag (because this is what it is) b) Subscribe/Unsubscribe -> DoConnect/Disconnect (to follow the usual convention of public Foo calling private DoFoo and to avoid using up another name) c) Derived -> ObjClass (because it's not clear what does Derived mean) 6. Extend the unit test to cover more cases.

2009-02-02 14:05 RR, revision 58623

Invalidate only the specified rectangle

2009-02-02 14:02 RR, revision 58622

The recent change to ::Refresh() (strangely) fails to invalidate e.g. a wxTreeCtrl in a wxDialog, revert the relevant part

2009-02-02 12:38 VZ, revision 58621

compilation fix for new event types (this shouldn't be necessary but do it to temporarily fix the build)

2009-02-02 11:39 VZ, revision 58620

don't always disable new events code; leave it enabled for MSVC8+

2009-02-02 08:36 CE, revision 58619

and a third fix from http://trac.wxwidgets.org/ticket/10457 fix

2009-02-02 05:12 SC, revision 58617

correct shortcuts on mac, fixes #10464

2009-02-01 23:43 RR, revision 58616

Make wxCheckListBox call event.SetString() on all platforms, not just wxMSW. Mention again, that wxCommandEvent::IsChecked() cannot be used for it.

2009-02-01 23:20 VZ, revision 58615

move evthandler.cpp to non-GUI test as it doesn't require the GUI

2009-02-01 23:19 VZ, revision 58614

test that the connected event handler is really called; some naming changes

2009-02-01 23:05 VZ, revision 58613

remove WXDLLIMPEXP_BASE from template classes to fix linking of code using new events in DLL build using MSVC9

2009-02-01 22:20 VZ, revision 58612

disable warning about using deprecated wxStripExtension() for MSVC

2009-02-01 22:12 VZ, revision 58611

add a unit test for new events (see #10000)

2009-02-01 22:10 VZ, revision 58610

no real changes, just add some comments

2009-02-01 21:33 RR, revision 58609

The check column needs more space

2009-02-01 21:33 RR, revision 58608

Enable the correct code making sure that subwindows will always receive a wxSizeEvent and can then relayout themselves