From: Vadim Zeitlin Date: Tue, 18 Jun 2002 12:46:56 +0000 (+0000) Subject: mention WXWIN_COMPATIBILITY_2_2 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b6421719c60a61c0fb800792a24bf39d7c85abb1?ds=sidebyside mention WXWIN_COMPATIBILITY_2_2 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15873 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/docs/changes.txt b/docs/changes.txt index aa4c3338fd..975226a840 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -8,6 +8,13 @@ INCOMPATIBLE CHANGES SINCE 2.2.x paying attention to the most important changes which are marked with '!' in the first column. + Also please note that you should ensure that WXWIN_COMPATIBILITY_2_2 + is defined to 1 if you wish to retain maximal compatibility with 2.2 + series -- however you are also strongly encouraged to try to compile + your code without this define as it won't be default any longer in + 2.6 release. + + wxBase: ! wxArray::Remove(size_t) has been removed to fix compilation problems @@ -38,6 +45,7 @@ wxBase: must modify YourApp::OnAssert() signature if you were using it to override the default assert handling. + All (GUI): ! the event type constants are not constants any more but are dynamically @@ -84,6 +92,10 @@ All (GUI): parent specified is NULL, use wxDIALOG_NO_PARENT style to prevent this from happening +- several obsolete synonyms are only retained in WXWIN_COMPATIBILITY_2_2 mode: + for example, use wxScrolledWindow::GetViewStart() now instead of ViewStart() + and GetCount() instead of Number() in many classes + wxMSW: