X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/850ff4855026066770d80c376ee6fc864169509c..28be2e8a170979d476a5ea4f585505b8a2f5af27:/src/gtk/stattext.cpp diff --git a/src/gtk/stattext.cpp b/src/gtk/stattext.cpp index ff7c054a02..6e00a77898 100644 --- a/src/gtk/stattext.cpp +++ b/src/gtk/stattext.cpp @@ -81,6 +81,8 @@ bool wxStaticText::Create(wxWindow *parent, m_parent->DoAddChild( this ); PostCreation(); + + ApplyWidgetStyle(); wxControl::SetFont( parent->GetFont() ); @@ -148,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);