Mention wxFoobookEvent change from classes to #defines in the change log.

These classes can't be forward-declared any more as they're not really classes
any longer but just compatibility #defines and can't be made classes again as
this would break the existing code using wxBookCtrlEvent in 2.9.

See #14242.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71390 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2012-05-09 14:24:30 +00:00
parent 36b0b09078
commit d5d037c362

View 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
-----------------------------------------