]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/changes.txt
Update selection cache when inserting items, too
[wxWidgets.git] / docs / changes.txt
index dfc732b91a646977cd0e5c58a7aa477c2ef8475d..f2bcd206b7101122afa1c037a8921c4563e76866 100644 (file)
@@ -87,6 +87,11 @@ Changes in behaviour not resulting in compilation errors, please read this!
   can still use wxGenericCalendarCtrl instead of wxCalendarCtrl in your code if
   you need the extra features.
 
+- wxDocument::FileHistoryLoad() and wxFileHistory::Load() now take const
+  reference to wxConfigBase argument and not just a reference, please update
+  your code if you overrode these functions and change the functions in the
+  derived classes to use const reference as well.
+
 
 Changes in behaviour which may result in compilation errors
 -----------------------------------------------------------
@@ -243,6 +248,7 @@ All:
   wxQueueEvent() replacing wxPostEvent().
 - wxString now uses std::[w]string internally by default, meaning that it is
   now thread-safe if the standard library provided with your compiler is.
+- Added wxCmdLineParser::AddUsageText() (Marcin 'Malcom' Malich)
 
 All (Unix):
 
@@ -319,6 +325,7 @@ All (GUI):
   from any window class, not just wxPanel.
 - Allow having menu separators with ids != wxID_SEPARATOR (Jeff Tupper)
 - Fix appending items to sorted wxComboCtrl after creation (Jaakko Salli)
+- Don't blit area larger than necessary in wxBufferedDC::UnMask (Liang Jian)
 
 wxGTK: