+- added wxToolBar Add/InsertTool(tool) (Janusz Piwowarski)
+- fixed user dash handling for MSW and GTK (Ken Edwards)
+- WXR resources can now be used in Unicode builds
+- it is now possible to use several wxFileHistory objects in the same menu
+ by giving them different base IDs (Dimitri Schoolwerth)
+- changed to type-safe wxSizerItemList for wxSizer child items
+ Deprecated:
+ wxSizer::Remove( wxWindow* )
+ - it does not function as Remove would usually be expected to
+ and destroy the window, use Detach instead
+ wxSizer::GetOption(),
+ wxSizer::SetOption()
+ - wxSizer 'option' parameter was renamed 'proportion' to better
+ reflect its action, use Get/SetProportion instead
+ wxKeyEvent::KeyCode()
+ - use GetKeyCode instead
+ wxList:: Number, First, Last, Nth
+ - use typesafe GetCount, GetFirst, GetLast, Item instead
+ wxNode:: Next, Previous, Data
+ - use typesafe Get* instead
+ wxListBase::operator wxList&()
+ - use typesafe lists instead
+- Added wxTLW::SetShape with implementations for wxMSW and wxGTK (so
+ far)
+- FL: rmoved const from EnableTool parameters
+- FL: signal child window when toolbar is closed
+- In various places, changed tests for pathsep on last char of string to call
+ wxEndsWithPathSeparator(s)
+- Added to defs.h a couple of macros (wxPtrToULong & wxULongToPtr)
+- Minor improvements to document/view framework, including
+ delayed deletion of a document (until after the user has chosen
+ a new document), and more intelligent addition of filenames to
+ the file history, including not adding filenames if not using the
+ default extension for the template
+- Speeded up wxImage::Scale using fixed point arithmetic (Wade Brainerd)
+- Added BLOB support to wxDB (John Skiff)
+- Wizard now validates as well as doing data transfer when
+ pressing Back or Next