X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/04165bec2cdc510a84f794fe69ebfe4a802e2ee1..2f51a9ecc5b9ebd406b6fa8d919793c1d661ec15:/src/gtk1/control.cpp diff --git a/src/gtk1/control.cpp b/src/gtk1/control.cpp index dee6ebb691..ca1b3a199d 100644 --- a/src/gtk1/control.cpp +++ b/src/gtk1/control.cpp @@ -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);