]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/control.cpp
wxT() for a Spanish(?) debug message
[wxWidgets.git] / src / gtk / control.cpp
index 12cc6a70df5651805ab84a1d7797f631f15b4d81..bbd5ac2fd8e5bd86b269943f5faea7df1eb7deb4 100644 (file)
@@ -19,7 +19,7 @@
 // wxControl
 //-----------------------------------------------------------------------------
 
-IMPLEMENT_DYNAMIC_CLASS(wxControl,wxWindow)
+IMPLEMENT_DYNAMIC_CLASS(wxControl, wxWindow)
 
 wxControl::wxControl()
 {
@@ -32,8 +32,8 @@ wxControl::wxControl( wxWindow *parent,
                       const wxSize &size,
                       long style,
                       const wxString &name )
-         : wxWindow( parent, id, pos, size, style, name )
 {
+    (void)Create(parent, id, pos, size, style, name);
 }
 
 void wxControl::SetLabel( const wxString &label )
@@ -52,7 +52,7 @@ void wxControl::SetLabel( const wxString &label )
     }
 }
 
-wxString wxControl::GetLabel(void) const
+wxString wxControl::GetLabel() const
 {
     return m_label;
 }