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

2001-05-18 18:33 VS, revision 10213

regenerated

2001-05-18 18:32 GT, revision 10212

Added compile-time check to be sure that wxUSE_ODBC is set to 1 before attempting to compile this program, and error out telling the user to change the setting if they want to compile this program

2001-05-18 17:15 VZ, revision 10211

compilation fix for mouse hack

2001-05-18 14:47 JS, revision 10210

Script fixes

2001-05-18 14:41 JS, revision 10209

Bug fixes

2001-05-18 14:14 JS, revision 10208

Corrected wrong casts

2001-05-18 14:00 JS, revision 10207

Added missing entries

2001-05-18 13:49 JS, revision 10206

Added release script

2001-05-18 13:46 JS, revision 10205

Updated library version numbers, and added .dsp and .dsw files to this branch (already added in trunk)

2001-05-18 13:46 , revision 10204

This commit was manufactured by cvs2svn to create branch 'WX_2_2_BRANCH'.

2001-05-18 06:53 RD, revision 10203

Fixed OOR related problem in OGL

2001-05-18 05:20 RD, revision 10202

Implemented the first phase of OOR (Original Object Return). See the text in the demo for more details of what this means, but in a nutshell methods such as wxWindow.GetParent or FindWindowById will now return a shadow object of the proper type if it can. By "proper type" I mean that if the wxWindow pointer returned from FindWindowById really points to a wxButton then the Python object constructed will be of a wxButtonPtr class instead of wxWindowPtr as before. This should reduce or eliminiate the need for wxPyTypeCast. (Woo Hoo!) The objects returned are still not the original Python object, but that is the next step. (Although it will probably only work on Python 2.1 and beyond because it will use weak references.) A few other minor tweaks and fixes and additions for things found while doing the OOR stuff.

2001-05-18 02:32 RD, revision 10201

Fixed wxPoint.__cmp__ and a few others

2001-05-17 23:46 VZ, revision 10200

merged fixes for accel and command event non propagation from 2.2

2001-05-17 23:45 VZ, revision 10199

don't propagate command events upwards beyond the first top level window

2001-05-17 23:44 VZ, revision 10198

don't use parent frame accels for translating key strokes in child dialogs/frames

2001-05-17 22:47 RD, revision 10197

Implemented the first phase of OOR (Original Object Return). See the text in the demo for more details of what this means, but in a nutshell methods such as wxWindow.GetParent or FindWindowById will now return a shadow object of the proper type if it can. By "proper type" I mean that if the wxWindow pointer returned from FindWindowById really points to a wxButton then the Python object constructed will be of a wxButtonPtr class instead of wxWindowPtr as before. This should reduce or eliminiate the need for wxPyTypeCast. (Woo Hoo!) The objects returned are still not the original Python object, but that is the next step. (Although it will probably only work on Python 2.1 and beyond because it will use weak references.) A few other minor tweaks and fixes and additions for things found while doing the OOR stuff.

2001-05-17 15:53 SC, revision 10196

fixed wxWindow::SetCursor( wxNullCursor) for mac

2001-05-17 15:51 VZ, revision 10195

don't annoy the user by repeating the question which had been already answered (and also make the question a bit more clear)

2001-05-17 11:09 JS, revision 10194

Call OnParentEnable from wxTextCtrl::Enable

2001-05-17 10:58 JS, revision 10193

Implemented OnParentEnable to allow widgets to reset their colours after a wxWindow::Enable call

2001-05-17 10:11 VZ, revision 10192

added wxLog::ClearTraceMasks()

2001-05-17 08:14 RL, revision 10191

typo fixes.

2001-05-17 07:53 RL, revision 10190

typo fix.

2001-05-17 07:27 RD, revision 10189

Applied patch #423927, (Min size for stretch parts of wxBoxSizer)