]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/control.cpp
fixed MDI accel bug, more tests for it in the sample
[wxWidgets.git] / src / gtk / control.cpp
index dee6ebb6912c6a7327255cd53eeb92142582e1bc..ca1b3a199d36c5f2d8a78ca9aed53876aa30e73d 100644 (file)
@@ -31,9 +31,7 @@ bool wxControl::Create( wxWindow *parent,
                       const wxPoint &pos,
                       const wxSize &size,
                       long style,
-#if wxUSE_VALIDATORS
                       const wxValidator& validator,
-#endif
                       const wxString &name )
 {
     bool ret = wxWindow::Create(parent, id, pos, size, style, name);
@@ -75,7 +73,7 @@ wxSize wxControl::DoGetBestSize() const
     GtkRequisition req;
     req.width = 2;
     req.height = 2;
-    (* GTK_WIDGET_CLASS( GTK_OBJECT(m_widget)->klass )->size_request )
+    (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(m_widget) )->size_request )
         (m_widget, &req );
 
     return wxSize(req.width, req.height);