]> git.saurik.com Git - wxWidgets.git/blobdiff - src/xrc/xh_chckb.cpp
adaptions to m_peer methods
[wxWidgets.git] / src / xrc / xh_chckb.cpp
index 35086f42b3718f1a78c2a9f8ce8ad13ed580d64f..242a33645be34a04f9b261231d2c5a11a27e3911 100644 (file)
@@ -7,7 +7,7 @@
 // Copyright:   (c) 2000 Bob Mitchell and Verant Interactive
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
+
 #ifdef __GNUG__
 #pragma implementation "xh_chckb.h"
 #endif
 
 #if wxUSE_CHECKBOX
 
-wxCheckBoxXmlHandler::wxCheckBoxXmlHandler() 
-: wxXmlResourceHandler() 
+IMPLEMENT_DYNAMIC_CLASS(wxCheckBoxXmlHandler, wxXmlResourceHandler)
+
+wxCheckBoxXmlHandler::wxCheckBoxXmlHandler()
+: wxXmlResourceHandler()
 {
     AddWindowStyles();
 }
 
 wxObject *wxCheckBoxXmlHandler::DoCreateResource()
-{ 
+{
     XRC_MAKE_INSTANCE(control, wxCheckBox)
 
     control->Create(m_parentAsWindow,
@@ -44,7 +46,7 @@ wxObject *wxCheckBoxXmlHandler::DoCreateResource()
 
     control->SetValue(GetBool( wxT("checked")));
     SetupWindow(control);
-    
+
     return control;
 }