mention WXWIN_COMPATIBILITY_2_2

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15873 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2002-06-18 12:46:56 +00:00
parent eb411b9eea
commit b6421719c6

View File

@ -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<T>::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: