X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/abdeb9e7006488bf917d90048fcd0cbe22f44a71..ac3c86ee7ddab0a1a5f025fb98ce9b992db84623:/src/gtk1/stattext.cpp diff --git a/src/gtk1/stattext.cpp b/src/gtk1/stattext.cpp index 7073bcd6cc..bfca9d9409 100644 --- a/src/gtk1/stattext.cpp +++ b/src/gtk1/stattext.cpp @@ -127,6 +127,7 @@ wxString wxStaticText::GetLabel() const void wxStaticText::SetLabel( const wxString &label ) { +#if 0 // Build the colorized version of the label wxString colorlabel = label; // If the color has been set, create a markup string to pass to the label setter @@ -145,6 +146,13 @@ void wxStaticText::SetLabel( const wxString &label ) gtk_label_set( GTK_LABEL(m_widget), wxGTK_CONV( m_label ) ); #endif +#else + + wxControl::SetLabel(label); + gtk_label_set( GTK_LABEL(m_widget), wxGTK_CONV( m_label ) ); +#endif + + // adjust the label size to the new label unless disabled if (!HasFlag(wxST_NO_AUTORESIZE)) { @@ -199,4 +207,11 @@ bool wxStaticText::SetForegroundColour(const wxColour& colour) return true; } +// static +wxVisualAttributes +wxStaticText::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) +{ + return GetDefaultAttributesFromGTKWidget(gtk_label_new); +} + #endif // wxUSE_STATTEXT