X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ff67d5860d2177ad5d4f66c13bb748ef975af88d..2afa14f2c7c3c1faa6332ee196a9cd5ca8200c68:/src/gtk1/control.cpp diff --git a/src/gtk1/control.cpp b/src/gtk1/control.cpp index a167406a88..ca1b3a199d 100644 --- a/src/gtk1/control.cpp +++ b/src/gtk1/control.cpp @@ -73,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);