From: Vadim Zeitlin Date: Wed, 9 May 2012 14:24:30 +0000 (+0000) Subject: Mention wxFoobookEvent change from classes to #defines in the change log. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d5d037c36203687ee5f38faab68530525f300ebb 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 --- diff --git a/docs/changes.txt b/docs/changes.txt index 59e99ea5fc..7e47a6716a 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -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 -----------------------------------------