X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/674ac8b919eecbc201b5f23b470a567cd0565e10..82713003dc446ad0353127abe66a1ecc66f4df67:/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);