fixed confusingly complicated sentence to make sense

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53839 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2008-05-30 10:33:40 +00:00
parent 558a6e065e
commit 3dac8f8a99

View File

@@ -14,9 +14,10 @@ in the manual for more details but here are the most important incompatible
changes: changes:
- Many wxWidgets functions taking "const wxChar *" have been changed to take - Many wxWidgets functions taking "const wxChar *" have been changed to take
either "const wxString&" so that they accept both Unicode and ANSI strings. either "const wxString&" (so that they accept both Unicode and ANSI strings;
and the argument can't be NULL or "const char *" if the strings are always the argument can't be NULL anymore in this case) or "const char *" (if the
ANSI but may be NULL. This change is normally backwards compatible except: strings are always; may still be NULL). This change is normally backwards
compatible except:
a) Virtual functions: derived classes versions must be modified to take a) Virtual functions: derived classes versions must be modified to take
"const wxString&" as well to make sure that they continue to override the "const wxString&" as well to make sure that they continue to override the