]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/xml/xh_radbx.cpp
Virtualized coordinate system for wxCanvas.
[wxWidgets.git] / contrib / src / xml / xh_radbx.cpp
index 0b1e6f13f4f31f277d93f317ce0957a07f7f9e1f..17679b952fab109fc91d631504e4743664a9a42d 100644 (file)
@@ -31,6 +31,7 @@ wxRadioBoxXmlHandler::wxRadioBoxXmlHandler()
     ADD_STYLE(wxRA_HORIZONTAL);
     ADD_STYLE(wxRA_SPECIFY_ROWS);
     ADD_STYLE(wxRA_VERTICAL);
+    AddWindowStyles();
 }
 
 wxObject *wxRadioBoxXmlHandler::DoCreateResource()
@@ -42,7 +43,7 @@ wxObject *wxRadioBoxXmlHandler::DoCreateResource()
 
         // need to build the list of strings from children
         m_InsideBox = TRUE;
-        CreateChildren( NULL, TRUE /* only this handler */, GetParamNode(_T("buttons")));
+        CreateChildren( NULL, TRUE /* only this handler */, GetParamNode(_T("content")));
         wxString *strings = (wxString *) NULL;
         if( strList.GetCount() > 0 )
         {
@@ -59,7 +60,7 @@ wxObject *wxRadioBoxXmlHandler::DoCreateResource()
                                     GetPosition(), GetSize(),
                                     strList.GetCount(),
                                     strings,
-                                    GetLong( _T("dimension"), 0 ),
+                                    GetLong( _T("dimension"), 1 ),
                                     GetStyle(),
                                     wxDefaultValidator,
                                     GetName()