X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/854e189f90dac9ba5e0239bca79aed64e8d6f46c..822e690b221486b63895b5f14a7fbee2bc966fe5:/contrib/src/xrc/xh_radbt.cpp diff --git a/contrib/src/xrc/xh_radbt.cpp b/contrib/src/xrc/xh_radbt.cpp index 8533992393..01c5ece4f0 100644 --- a/contrib/src/xrc/xh_radbt.cpp +++ b/contrib/src/xrc/xh_radbt.cpp @@ -7,7 +7,7 @@ // Copyright: (c) 2000 Bob Mitchell and Verant Interactive // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - + #ifdef __GNUG__ #pragma implementation "xh_radbt.h" #endif @@ -26,21 +26,21 @@ IMPLEMENT_DYNAMIC_CLASS(wxRadioButtonXmlHandler, wxXmlResourceHandler) -wxRadioButtonXmlHandler::wxRadioButtonXmlHandler() -: wxXmlResourceHandler() +wxRadioButtonXmlHandler::wxRadioButtonXmlHandler() +: wxXmlResourceHandler() { XRC_ADD_STYLE(wxRB_GROUP); AddWindowStyles(); } wxObject *wxRadioButtonXmlHandler::DoCreateResource() -{ +{ /* BOBM - implementation note. * once the wxBitmapRadioButton is implemented. - * look for a bitmap property. If not null, - * make it a wxBitmapRadioButton instead of the + * look for a bitmap property. If not null, + * make it a wxBitmapRadioButton instead of the * normal radio button. - */ + */ XRC_MAKE_INSTANCE(control, wxRadioButton) @@ -54,7 +54,7 @@ wxObject *wxRadioButtonXmlHandler::DoCreateResource() control->SetValue(GetBool(wxT("value"), 0)); SetupWindow(control); - + return control; }