X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/310e47b3be75a405f709e9fc2f7242ede95758fb..026c6eff708c867efe9eca35e41bf82b58ba1c1a:/src/xrc/xh_datectrl.cpp?ds=sidebyside diff --git a/src/xrc/xh_datectrl.cpp b/src/xrc/xh_datectrl.cpp index 5ab0fa49dc..4c0225b57f 100644 --- a/src/xrc/xh_datectrl.cpp +++ b/src/xrc/xh_datectrl.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_datectrl.cpp +// Name: src/xrc/xh_datectrl.cpp // Purpose: XML resource handler for wxDatePickerCtrl // Author: Vaclav Slavik // Created: 2005-02-07 @@ -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(); } @@ -43,7 +40,7 @@ wxObject *wxDateCtrlXmlHandler::DoCreateResource() GetID(), wxDefaultDateTime, GetPosition(), GetSize(), - GetStyle(_T("style"), wxDP_DEFAULT | wxDP_SHOWCENTURY), + GetStyle(wxT("style"), wxDP_DEFAULT | wxDP_SHOWCENTURY), wxDefaultValidator, GetName()); @@ -57,4 +54,4 @@ bool wxDateCtrlXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxDatePickerCtrl")); } -#endif // wxUSE_XRC +#endif // wxUSE_XRC && wxUSE_DATEPICKCTRL