]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/checkbox.cpp
no message
[wxWidgets.git] / src / gtk / checkbox.cpp
index 3883d1d7e27e6433eaf04323070b3d1e74158d4c..c4aac9364a1b3d47d18149dddb181da0f0d8246a 100644 (file)
@@ -56,8 +56,6 @@ bool wxCheckBox::Create(  wxWindow *parent, wxWindowID id, const wxString &label
 
   SetValidator( validator );
 
-  wxControl::SetLabel( label );
-
   m_widget = gtk_check_button_new_with_label( m_label );
  
   wxSize newSize = size;
@@ -70,6 +68,8 @@ bool wxCheckBox::Create(  wxWindow *parent, wxWindowID id, const wxString &label
     
   PostCreation();
   
+  SetLabel( label );
+
   Show( TRUE );
     
   return TRUE;