]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/radiobut.cpp
Better markup.
[wxWidgets.git] / src / gtk / radiobut.cpp
index 837cd33058432b82c0a58d73e4c65e4ff2907e76..df0ad406d2146f811f5511c186ac57ee20925de2 100644 (file)
@@ -145,8 +145,6 @@ void wxRadioButton::SetLabel( const wxString& label )
 #else
     gtk_label_set( g_label, wxGTK_CONV( GetLabel() ) );
 #endif
-
-    PostSetLabel();
 }
 
 void wxRadioButton::SetValue( bool val )
@@ -239,9 +237,12 @@ wxVisualAttributes
 wxRadioButton::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
 {
     wxVisualAttributes attr;
+    // NB: we need toplevel window so that GTK+ can find the right style
+    GtkWidget *wnd = gtk_window_new(GTK_WINDOW_TOPLEVEL);
     GtkWidget* widget = gtk_radio_button_new_with_label(NULL, "");
+    gtk_container_add(GTK_CONTAINER(wnd), widget);
     attr = GetDefaultAttributesFromGTKWidget(widget);
-    gtk_widget_destroy(widget);
+    gtk_widget_destroy(wnd);
     return attr;
 }