X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e8a793f06cc0abb9e2433b1fe518c836395c8b49..5064e6eff3ca35cb20130dc9e5e53fb3ac02127e:/include/wx/xrc/xh_mdi.h?ds=sidebyside diff --git a/include/wx/xrc/xh_mdi.h b/include/wx/xrc/xh_mdi.h index 3ee7fbe973..06eeffc340 100644 --- a/include/wx/xrc/xh_mdi.h +++ b/include/wx/xrc/xh_mdi.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: wx/xrc/xh_mdi.h -// Purpose: XML resource handler for dialogs +// Purpose: XML resource handler for wxMDI // Author: David M. Falkinder & Vaclav Slavik // Created: 14/02/2005 // RCS-ID: $Id$ @@ -13,12 +13,14 @@ #include "wx/xrc/xmlres.h" -#if wxUSE_MDI +#if wxUSE_XRC && wxUSE_MDI class WXDLLIMPEXP_CORE wxWindow; class WXDLLIMPEXP_XRC wxMdiXmlHandler : public wxXmlResourceHandler { + DECLARE_DYNAMIC_CLASS(wxMdiXmlHandler) + public: wxMdiXmlHandler(); virtual wxObject *DoCreateResource(); @@ -26,10 +28,8 @@ public: private: wxWindow *CreateFrame(); - - DECLARE_DYNAMIC_CLASS(wxMdiXmlHandler) }; -#endif // wxUSE_MDI +#endif // wxUSE_XRC && wxUSE_MDI #endif // _WX_XH_MDI_H_