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

2002-03-08 01:23 RL, revision 14490

Moved assert to before the segfault.

2002-03-07 23:36 VZ, revision 14489

added a const version of wxColourData::GetColour()

2002-03-07 22:42 RD, revision 14488

Removed unneeded assert

2002-03-07 21:48 RD, revision 14487

SWIGged updates for wxGTK

2002-03-07 21:47 RD, revision 14486

Bugfix for wxTreeCtrl.InsertItemBefore and more SWIGged updates for wxMSW

2002-03-07 21:45 VS, revision 14485

rewrote Chris' fix properly

2002-03-07 21:33 RD, revision 14484

More XRCed updates from Roman

2002-03-07 20:36 RD, revision 14483

SWIGged updates for wxGTK

2002-03-07 20:34 RD, revision 14482

SWIGged updates for wxMSW

2002-03-07 20:33 RD, revision 14481

Added some anchor related methods to wxHtmlWindow as suggested on the wxPython-users list.

2002-03-07 20:32 RD, revision 14480

more updates for recent toolbar changes

2002-03-07 20:32 RD, revision 14479

Added python support for a virtual CanDismiss method

2002-03-07 20:31 RD, revision 14478

Added a Python-specific Append method to the wxListCtrl

2002-03-07 20:29 RD, revision 14477

rearrainging a few things

2002-03-07 18:48 JS, revision 14476

Corrections in light of recent toolbar and other changes

2002-03-07 10:06 JS, revision 14475

Added VC++ project files for remaining Gizmo samples Corrected some precompiled header issues for dynsash samples Corrected IMPLEMENT_ABSTRACT_CLASS in multicell.cpp Added an event function typedef and used it in dynsash sample

2002-03-07 09:47 GD, revision 14474

correction to float array declaration following array implementation changes (will compile and run as before but probably doesn't do what was intended)

2002-03-06 23:59 VZ, revision 14473

define wxFRAME_FLOAT_ON_PARENT as wxFRAME_TOOL_WINDOW

2002-03-06 23:18 VZ, revision 14472

fixes for non interactive execution

2002-03-06 22:06 GD, revision 14471

fixed creation of Info.plist file for Mac OS X

2002-03-06 21:41 RD, revision 14470

A new version of XRCed from Roman Rolinsky with a few tweaks by me.

2002-03-06 20:43 RL, revision 14469

removed superfluous assignment handled in base class.

2002-03-06 20:11 MBN, revision 14468

More fixes for daily builds

2002-03-06 19:05 JS, revision 14467

Applied [ 516382 ] FL toolbar patch This patch addresses following issues on FL dynamic toolbar: * Removes duplicate code in wxNewBitmapButton::RenderLabelImage(). (The code between line 452-500 and 502-550 is the same.) * Adds wxNewBitmapButton::Enable() own method to proper drawing of enabled/disabled buttons. * Changes "focused" state (of wxNewBitmapButton) implementation from EVT_MOTION to EVT_ENTER/LEAVE_WINDOW pair, because capturing mouse in EVT_MOTION handler blocks some key events (control characters, function keys), so underlynig app doesn't receive all key events when mouse pointer is above toolbar button. Also "prev" state member variables are removed by this patch (and IMHO they should be removed regardles on accepting this patch - they are initalized and used only in wxNewBitmapButton::OnMouseMove() method). (Note: Blocking some keys can be only MSW problem, but I can't verify it.) * Adds EVT_LEFT_DCLICK handler to wxNewBitmapButton - without this handler, toolbar button loses second clicks if user presses left mouse button "fast enough". Unfortunately, it doesn't handle drawing of pressed/released button - it's only one event in contrast to EVT_LEFT_UP/DOWN. * Enables tooltips (in proper wxDynamicToolBar::AddTool() method).

2002-03-06 18:58 JS, revision 14466

Applied [ 520664 ] filedlg patch