]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/stattext.cpp
Fixed gtk 1.0.6 corruped menu entry names.
[wxWidgets.git] / src / gtk1 / stattext.cpp
index 721c31843dfd3731bcb1f5c41118564772552ea6..102a55b09ad85b2465e2e58ce2b90d7b1193c19c 100644 (file)
@@ -57,7 +57,7 @@ bool wxStaticText::Create(wxWindow *parent,
     // because the label is not yet created and because SetLabel() has a side
     // effect of changing the control size which might not be desirable
     wxControl::SetLabel(label);
-    m_widget = gtk_label_new( m_label );
+    m_widget = gtk_label_new( m_label.mbc_str() );
 
     GtkJustification justify;
     if ( style & wxALIGN_CENTER )
@@ -103,7 +103,7 @@ void wxStaticText::SetLabel( const wxString &label )
 {
     wxControl::SetLabel(label);
 
-    gtk_label_set( GTK_LABEL(m_widget), m_label );
+    gtk_label_set( GTK_LABEL(m_widget), m_label.mbc_str() );
 
     // adjust the label size to the new label