]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/control.cpp
no message
[wxWidgets.git] / src / gtk / control.cpp
index 7979f34d5c503c7db4d18d419160d23a8d4e008d..61bab59ecf0d26ea217725e7d3661ee0fa9a616b 100644 (file)
@@ -23,18 +23,18 @@ 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 )
 {
@@ -50,12 +50,12 @@ void wxControl::SetLabel( const wxString &label )
 
     m_label << *pc;
   }
-};
+}
 
 wxString wxControl::GetLabel(void) const
 {
   return m_label;
-};
+}