]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/radiobut.cpp
fixed wxSetEnv to correctly set variable in Unicode build
[wxWidgets.git] / src / gtk / radiobut.cpp
index 1fd39b77fba8688504a2b5e62c0181ed5c222377..c03a82e438a66b5684935008c37d4f93e33ee2ef 100644 (file)
@@ -233,4 +233,16 @@ wxSize wxRadioButton::DoGetBestSize() const
     return wxControl::DoGetBestSize();
 }
 
+// static
+wxVisualAttributes
+wxRadioButton::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
+{
+    wxVisualAttributes attr;
+    GtkWidget* widget = gtk_radio_button_new_with_label(NULL, "");
+    attr = GetDefaultAttributesFromGTKWidget(widget);
+    gtk_widget_destroy(widget);
+    return attr;
+}
+
+
 #endif