X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3e97a905185a72c04a7feb67c7885ab4412100ee..f1b63efe8993c6c0460354bc2da7331526d43efa:/include/wx/listbook.h diff --git a/include/wx/listbook.h b/include/wx/listbook.h index 57f24203dd..5e05d3be50 100644 --- a/include/wx/listbook.h +++ b/include/wx/listbook.h @@ -21,8 +21,8 @@ class WXDLLIMPEXP_FWD_CORE wxListView; class WXDLLIMPEXP_FWD_CORE wxListEvent; -extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED; -extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING; +wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED, wxBookCtrlEvent ) +wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING, wxBookCtrlEvent ) // wxListbook flags #define wxLB_DEFAULT wxBK_DEFAULT @@ -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)