X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f80ea77b4a8bac4ab005bfc592f9cd3262ffa397..7bd236e6da74203ba429941d3f9643291494b420:/src/xrc/xh_radbt.cpp diff --git a/src/xrc/xh_radbt.cpp b/src/xrc/xh_radbt.cpp index 01c5ece4f0..aff575219e 100644 --- a/src/xrc/xh_radbt.cpp +++ b/src/xrc/xh_radbt.cpp @@ -8,10 +8,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation "xh_radbt.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,17 +15,18 @@ #pragma hdrstop #endif +#if wxUSE_XRC && wxUSE_RADIOBTN + #include "wx/xrc/xh_radbt.h" #include "wx/radiobut.h" -#if wxUSE_RADIOBOX - IMPLEMENT_DYNAMIC_CLASS(wxRadioButtonXmlHandler, wxXmlResourceHandler) wxRadioButtonXmlHandler::wxRadioButtonXmlHandler() : wxXmlResourceHandler() { XRC_ADD_STYLE(wxRB_GROUP); + XRC_ADD_STYLE(wxRB_SINGLE); AddWindowStyles(); } @@ -63,4 +60,4 @@ bool wxRadioButtonXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxRadioButton")); } -#endif +#endif // wxUSE_XRC && wxUSE_RADIOBTN