X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/310e47b3be75a405f709e9fc2f7242ede95758fb..a766986f6d443ba1d50e3af25f3306fa56e4518e:/src/xrc/xh_datectrl.cpp?ds=sidebyside diff --git a/src/xrc/xh_datectrl.cpp b/src/xrc/xh_datectrl.cpp index 5ab0fa49dc..f3e4de97fe 100644 --- a/src/xrc/xh_datectrl.cpp +++ b/src/xrc/xh_datectrl.cpp @@ -8,10 +8,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation "xh_datectrl.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,7 +15,7 @@ #pragma hdrstop #endif -#if wxUSE_XRC +#if wxUSE_XRC && wxUSE_DATEPICKCTRL #include "wx/xrc/xh_datectrl.h" #include "wx/datectrl.h" @@ -31,6 +27,7 @@ wxDateCtrlXmlHandler::wxDateCtrlXmlHandler() : wxXmlResourceHandler() XRC_ADD_STYLE(wxDP_DEFAULT); XRC_ADD_STYLE(wxDP_SPIN); XRC_ADD_STYLE(wxDP_DROPDOWN); + XRC_ADD_STYLE(wxDP_ALLOWNONE); XRC_ADD_STYLE(wxDP_SHOWCENTURY); AddWindowStyles(); } @@ -57,4 +54,4 @@ bool wxDateCtrlXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxDatePickerCtrl")); } -#endif // wxUSE_XRC +#endif // wxUSE_XRC && wxUSE_DATEPICKCTRL