git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27298
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void wxStaticText::SetLabel( const wxString &label )
{
void wxStaticText::SetLabel( const wxString &label )
{
// 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
// 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
gtk_label_set( GTK_LABEL(m_widget), wxGTK_CONV( m_label ) );
#endif
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))
{
// adjust the label size to the new label unless disabled
if (!HasFlag(wxST_NO_AUTORESIZE))
{
void wxStaticText::SetLabel( const wxString &label )
{
void wxStaticText::SetLabel( const wxString &label )
{
// 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
// 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
gtk_label_set( GTK_LABEL(m_widget), wxGTK_CONV( m_label ) );
#endif
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))
{
// adjust the label size to the new label unless disabled
if (!HasFlag(wxST_NO_AUTORESIZE))
{