]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/changes.txt
mention wxTreeItemId change
[wxWidgets.git] / docs / changes.txt
index 8510ea0e2d7ac1284484869f969fbbb2e8793fa6..a2983ef7a3cd86d007f63dfc8b8199dcd4a68122 100644 (file)
@@ -29,6 +29,7 @@ versions, please update your code to not use them.
 - wxHashTableLong: use wxHashMap instead
 - wxArrayString::GetStringArray: no replacement
 - wxArrayString::Remove(index, count): use RemoveAt instead
+- wxTreeItemId conversion to long is deprecated and shouldn't be used
 - [MSW only] wxWindow::GetUseCtl3D(), GetTransparentBackground() and
              SetTransparent() as well as wxNO_3D and wxUSER_COLOURS styles
 
@@ -42,6 +43,7 @@ OTHER CHANGES
 All:
 
 - added wxDateSpan::operator==() and !=() (Lukasz Michalski)
+- added wxFileName::GetForbiddenChars() (Dimitri Schoolwerth)
 - use true/false throughout the library instead of TRUE/FALSE
 - wxStopWatch::Start() resumes the stop watch if paused, as per the docs
 - added wxDirTraverser::OnOpenError() to customize the error handling
@@ -122,6 +124,7 @@ All GUI ports:
   styles for use with conservative idle and update event modes.
 - wxMSW and wxGTK now send menu update events only when a menu is
   about to be used.
+- improved event processing performance (Hans Van Leemputten)
 
 Unix:
 
@@ -435,7 +438,7 @@ wxBase:
 - fixes to the command line parsing error and usage messages
 - modified wxFileName::CreateTempFileName() to open the file atomically
   (if possible) and, especially, not to leak the file descriptors under Unix
-- memory leak in wxHTTP fixed (Dimitri)
+- memory leak in wxHTTP fixed (Dimitri Schoolwerth)
 - fixes to AM_PATH_WXCONFIG autoconf macro
 - added wxHashMap class that replaces type-unsafe wxHashTable and is modelled
   after (non standard) STL hash_map