]> git.saurik.com Git - wxWidgets.git/commitdiff
use #defines, not typedefs, for compatibility class names declarations to avoid break...
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 18 Sep 2008 16:56:53 +0000 (16:56 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 18 Sep 2008 16:56:53 +0000 (16:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55701 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/listbook.h
include/wx/notebook.h

index 57f24203dd73600ef0241292cd477b9868059594..a8abcce05259087532f3b32f78ca082f9e515e91 100644 (file)
@@ -124,8 +124,10 @@ private:
 // listbook event class and related stuff
 // ----------------------------------------------------------------------------
 
-// wxListbookEvent is obsolete and defined for compatibility only
-typedef wxBookCtrlEvent wxListbookEvent;
+// wxListbookEvent is obsolete and defined for compatibility only (notice that
+// we use #define and not typedef to also keep compatibility with the existing
+// code which forward declares it)
+#define wxListbookEvent wxBookCtrlEvent
 typedef wxBookCtrlEventFunction wxListbookEventFunction;
 #define wxListbookEventHandler(func) wxBookCtrlEventHandler(func)
 
index 01b962694db5d176bd1f18a7b637395c6939ad43..ddc7ef40edb2a9997c0d7a7c38e74781512e7052 100644 (file)
@@ -111,8 +111,10 @@ protected:
 // notebook event class and related stuff
 // ----------------------------------------------------------------------------
 
-// wxNotebookEvent is obsolete and defined for compatibility only
-typedef wxBookCtrlEvent wxNotebookEvent;
+// wxNotebookEvent is obsolete and defined for compatibility only (notice that
+// we use #define and not typedef to also keep compatibility with the existing
+// code which forward declares it)
+#define wxNotebookEvent wxBookCtrlEvent
 typedef wxBookCtrlEventFunction wxNotebookEventFunction;
 #define wxNotebookEventHandler(func) wxBookCtrlEventHandler(func)