]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/xrc/xh_stbox.cpp
Warning fixes, source cleaning.
[wxWidgets.git] / contrib / src / xrc / xh_stbox.cpp
index cc357908c9b6843cf7b6d7d0df79dda60a56975b..9a88572d5be1296b0415e4bd04b70987463a9da2 100644 (file)
@@ -7,7 +7,7 @@
 // Copyright:   (c) 2000 Brian Gavin
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
+
 #ifdef __GNUG__
 #pragma implementation "xh_stbox.h"
 #endif
 
 IMPLEMENT_DYNAMIC_CLASS(wxStaticBoxXmlHandler, wxXmlResourceHandler)
 
-wxStaticBoxXmlHandler::wxStaticBoxXmlHandler() 
-: wxXmlResourceHandler() 
+wxStaticBoxXmlHandler::wxStaticBoxXmlHandler()
+: wxXmlResourceHandler()
 {
     AddWindowStyles();
 }
 
 wxObject *wxStaticBoxXmlHandler::DoCreateResource()
-{ 
+{
     XRC_MAKE_INSTANCE(box, wxStaticBox)
 
     box->Create(m_parentAsWindow,
@@ -42,7 +42,7 @@ wxObject *wxStaticBoxXmlHandler::DoCreateResource()
                 GetName());
 
     SetupWindow(box);
-    
+
     return box;
 }