X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..05a98b6d5d201eb8edea04b1ab022e4a9a46e9f0:/include/wx/xrc/xh_notbk.h?ds=sidebyside diff --git a/include/wx/xrc/xh_notbk.h b/include/wx/xrc/xh_notbk.h index ea3cdb757c..1cbb9e5dd0 100644 --- a/include/wx/xrc/xh_notbk.h +++ b/include/wx/xrc/xh_notbk.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_notbk.h +// Name: wx/xrc/xh_notbk.h // Purpose: XML resource handler for wxNotebook // Author: Vaclav Slavik // RCS-ID: $Id$ @@ -12,13 +12,14 @@ #include "wx/xrc/xmlres.h" -#if wxUSE_NOTEBOOK +#if wxUSE_XRC && wxUSE_NOTEBOOK class WXDLLEXPORT wxNotebook; class WXDLLIMPEXP_XRC wxNotebookXmlHandler : public wxXmlResourceHandler { -DECLARE_DYNAMIC_CLASS(wxNotebookXmlHandler) + DECLARE_DYNAMIC_CLASS(wxNotebookXmlHandler) + public: wxNotebookXmlHandler(); virtual wxObject *DoCreateResource(); @@ -29,6 +30,6 @@ private: wxNotebook *m_notebook; }; -#endif +#endif // wxUSE_XRC && wxUSE_NOTEBOOK #endif // _WX_XH_NOTBK_H_