X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..616c0d1f3ac084bb92f0a75dc48812e8647f1b22:/include/wx/xrc/xh_choic.h diff --git a/include/wx/xrc/xh_choic.h b/include/wx/xrc/xh_choic.h index 40de8ea130..da44862fd6 100644 --- a/include/wx/xrc/xh_choic.h +++ b/include/wx/xrc/xh_choic.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_choic.h +// Name: wx/xrc/xh_choic.h // Purpose: XML resource handler for wxChoice // Author: Bob Mitchell // Created: 2000/03/21 @@ -13,17 +13,22 @@ #include "wx/xrc/xmlres.h" +#if wxUSE_XRC && wxUSE_CHOICE + class WXDLLIMPEXP_XRC wxChoiceXmlHandler : public wxXmlResourceHandler { -DECLARE_DYNAMIC_CLASS(wxChoiceXmlHandler) + DECLARE_DYNAMIC_CLASS(wxChoiceXmlHandler) + public: wxChoiceXmlHandler(); virtual wxObject *DoCreateResource(); virtual bool CanHandle(wxXmlNode *node); + private: bool m_insideBox; wxArrayString strList; }; +#endif // wxUSE_XRC && wxUSE_CHOICE #endif // _WX_XH_CHOIC_H_