]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/radiobut.cpp
X property data is long for format 32
[wxWidgets.git] / src / motif / radiobut.cpp
index 00ec024178593a80fc0c7d93e4bfc54fd799f098..4ac378762e70128b379287e333063aadf6ff271f 100644 (file)
@@ -51,6 +51,7 @@ bool wxRadioButton::Create(wxWindow *parent, wxWindowID id,
 {
     if( !CreateControl( parent, id, pos, size, style, validator, name ) )
         return false;
+    PreCreation();
 
     Widget parentWidget = (Widget) parent->GetClientWidget();
     Display* dpy = XtDisplay(parentWidget);
@@ -80,11 +81,10 @@ bool wxRadioButton::Create(wxWindow *parent, wxWindowID id,
 
     XtManageChild (radioButtonWidget);
 
+    PostCreation();
     AttachWidget (parent, m_mainWidget, (WXWidget) NULL,
                   pos.x, pos.y, size.x, size.y);
 
-    ChangeBackgroundColour();
-
     //copied from mac/radiobut.cpp (from here till "return true;")
     m_cycle = this ;