]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/changes.txt
No changes, just simplify the code using wx2stc() a little.
[wxWidgets.git] / docs / changes.txt
index 0cb1b1aea2fa03640295841b1539a536a906af85..3f795ed8673c2a53daed25004c3683885b6fd5c8 100644 (file)
@@ -372,6 +372,12 @@ Changes in behaviour which may result in compilation errors
   result in compilation errors due to an ambiguity between them if you pass
   NULL as client data. To fix this, cast NULL explicitly to "void**".
 
+- wxChoicebookEvent, wxListbookEvent, wxNotebookEvent, wxToolbookEvent and
+  wxTreebookEvent are now all synonyms for wxBookCtrlEvent. The existing code
+  using the old names continues to work but they can't be forward-declared
+  any more. Use wxBookCtrlEvent in your code if you need to forward-declare
+  it or just include the appropriate header instead of forward declaration.
+
 
 Deprecated methods and their replacements
 -----------------------------------------
@@ -450,6 +456,14 @@ Deprecated methods and their replacements
   possible or wxWindowDisabler otherwise.
 
 
+Changes in behaviour visible to end users
+-----------------------------------------
+
+- In wxMSW wxSpinCtrl used to prevent the user from entering more digits than
+  could fit in its visible area. This was inconsistent with the other ports and
+  now the control scrolls if too much text is added.
+
+
 Major new features in this release
 ----------------------------------
 
@@ -496,6 +510,7 @@ All:
 - Added wxFileName::Exists().
 - Implement wxThread::SetConcurrency() for POSIX systems (Igor Korot).
 - Fix deadlock due to too many events in Unix console apps (Lukasz Michalski).
+- Added wxDir::GetNameWithSep().
 
 All (GUI):
 
@@ -525,7 +540,8 @@ All (GUI):
 - Added wxTimePickerCtrl::Get/SetTime().
 - Fix WXK_MENU handling in wxStyledTextCtrl under wxGTK (cantabile).
 - Added wxAcceleratorEntry::ToRawString() (Armel Asselin).
-
+- Added wxDataViewEvent::SetDragFlags() and GetDropEffect() (Friedrich).
+- Added support for fields and virtual attributes to wxRichTextCtrl.
 
 GTK:
 
@@ -550,6 +566,7 @@ MSW:
 - Fix coordinate handling in wxDC::Blit() when source DC is a DIB.
 - Fix handling of composite windows in wxToolTip (Armel Asselin).
 - Add VT_I8 support to wxAutomationObject (PB).
+- Fix wxListbook size calculations to avoid spurious scrollbars.
 
 OSX:
 
@@ -560,6 +577,10 @@ Univ:
 
 - Fix regression with read-only wxComboBox appearance (Jason Erb).
 
+Unix:
+
+- Fix bug with wxDir("/").GetName() returning empty string.
+
 
 
 2.9.3: (released 2011-12-14)