X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a9a76b2fb870ac5582d20bd62bcc2aeec8020be7..4997d3014cd76b41f2d4036dfd168ad886972f35:/docs/changes.txt diff --git a/docs/changes.txt b/docs/changes.txt index 7889803262..675b050046 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -92,6 +92,9 @@ OTHER CHANGES All: - Hindi translations added (Dhananjaya Sharma) +- wxDynamicCast() now uses static_cast internally and so using it + with anything not deriving from wxObject will fail at compile time (instead + of run-time) now All (GUI): @@ -100,7 +103,7 @@ All (GUI): - Added UpdateSize to wxSplitterWindow to allow layout while hidden - implemented Freeze/Thaw() for wxGenericTreeCtrl (Kevin Hock) - support for KOI8-U encoding added (Yuriy Tkachenko) -- The old wxADJUST_MINSIZE behaviouris now the default behaviour for +- The old wxADJUST_MINSIZE behaviour is now the default behaviour for sizer items that are windows. This means that GetAdjustedBestSize will now be called by default to determine the minimum size that a window in a sizer should have. If you want to still use the initial @@ -108,6 +111,7 @@ All (GUI): windows are added to a sizer their initial size is made the window's min size using SetSizeHints, and calls to wxSizer::SetItemMinSize are also forwarded to SetSizeHints for window items. +- added wxRegEx::GetMatchCount() wxMSW: