X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/db434467a143a2c847c4bcfe987f0202c2d02bf2..2adaf5969faf352d740f267b1a4ef79a2cf75980:/src/gtk1/stattext.cpp?ds=inline diff --git a/src/gtk1/stattext.cpp b/src/gtk1/stattext.cpp index 54d7366a4f..6e00a77898 100644 --- a/src/gtk1/stattext.cpp +++ b/src/gtk1/stattext.cpp @@ -81,7 +81,7 @@ bool wxStaticText::Create(wxWindow *parent, m_parent->DoAddChild( this ); PostCreation(); - + ApplyWidgetStyle(); wxControl::SetFont( parent->GetFont() ); @@ -150,7 +150,7 @@ wxSize wxStaticText::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);