]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/statbox.cpp
tab traversal now works better (using uninitialized variable was a bad idea :-)
[wxWidgets.git] / src / gtk1 / statbox.cpp
index 3f6abe319888d0f7af019ba66bd7057a9b67492f..abf8e8ce574a69eca0f9a70ada6c4d551b92ee13 100644 (file)
@@ -22,14 +22,14 @@ IMPLEMENT_DYNAMIC_CLASS(wxStaticBox,wxControl)
 
 wxStaticBox::wxStaticBox(void)
 {
-};
+}
 
 wxStaticBox::wxStaticBox( wxWindow *parent, wxWindowID id, const wxString &label,
       const wxPoint &pos, const wxSize &size,
       long style, const wxString &name )
 {
   Create( parent, id, label, pos, size, style, name );
-};
+}
 
 bool wxStaticBox::Create( wxWindow *parent, wxWindowID id, const wxString &label,
       const wxPoint &pos, const wxSize &size,
@@ -47,4 +47,11 @@ bool wxStaticBox::Create( wxWindow *parent, wxWindowID id, const wxString &label
   Show( TRUE );
 
   return TRUE;
-};
+}
+
+void wxStaticBox::SetLabel( const wxString &label )
+{
+  wxControl::SetLabel( label );
+  GtkFrame *frame = GTK_FRAME( m_widget );
+  gtk_frame_set_label( frame, GetLabel() );
+}