m_isStaticBox = TRUE;
- m_widget = gtk_frame_new(m_label);
+ m_widget = gtk_frame_new(m_label.mbc_str());
m_parent->AddChild( this );
SetBackgroundColour( parent->GetBackgroundColour() );
SetForegroundColour( parent->GetForegroundColour() );
+ SetFont( parent->GetFont() );
Show( TRUE );
{
wxControl::SetLabel( label );
GtkFrame *frame = GTK_FRAME( m_widget );
- gtk_frame_set_label( frame, GetLabel() );
+ gtk_frame_set_label( frame, GetLabel().mbc_str() );
}
void wxStaticBox::ApplyWidgetStyle()
SetWidgetStyle();
gtk_widget_set_style( m_widget, m_widgetStyle );
}
-