]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/control.cpp
no message
[wxWidgets.git] / src / gtk1 / control.cpp
index 3c7f89d95b8af92647bf133ba04f7b71d9a93bdd..61bab59ecf0d26ea217725e7d3661ee0fa9a616b 100644 (file)
@@ -23,21 +23,22 @@ IMPLEMENT_DYNAMIC_CLASS(wxControl,wxWindow)
 wxControl::wxControl(void)
 {
   m_needParent = TRUE;
-};
+}
 
 wxControl::wxControl( wxWindow *parent, wxWindowID id,
       const wxPoint &pos, const wxSize &size,
       long style, const wxString &name ) :
   wxWindow( parent, id, pos, size, style, name )
 {
-};
+}
 
 void wxControl::Command( wxCommandEvent &WXUNUSED(event) )
 {
-};
+}
 
 void wxControl::SetLabel( const wxString &label )
 {
+  m_label = "";
   for ( const char *pc = label; *pc != '\0'; pc++ ) {
     if ( *pc == '&' ) {
       pc++; // skip it
@@ -49,12 +50,12 @@ void wxControl::SetLabel( const wxString &label )
 
     m_label << *pc;
   }
-};
+}
 
 wxString wxControl::GetLabel(void) const
 {
   return m_label;
-};
+}