]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/statbox.cpp
Check for end of buffer in wxMemoryInputStream::Peek.
[wxWidgets.git] / src / gtk1 / statbox.cpp
index a15681c0619017a1649d623c47a3340641d12c92..d057ebbd4c92da5668ae7a6cfa65b585db59970a 100644 (file)
@@ -91,19 +91,12 @@ void wxStaticBox::SetLabel( const wxString &label )
                          m_label.empty() ? (char *)NULL : (const char*) wxGTK_CONV( m_label ) );
 }
 
-bool wxStaticBox::SetFont( const wxFont &font )
+void wxStaticBox::DoApplyWidgetStyle(GtkRcStyle *style)
 {
-    wxControl::SetFont( font );
-
-    if (GTK_FRAME(m_widget)->label_widget)
-    {
-        GtkRcStyle *style = CreateWidgetStyle(true);
-        if ( style )
-        {
-            gtk_widget_modify_style( GTK_FRAME(m_widget)->label_widget, style);
-            gtk_rc_style_unref(style);
-        }
-    }
+    gtk_widget_modify_style(m_widget, style);
+#ifdef __WXGTK20__
+    gtk_widget_modify_style(GTK_FRAME(m_widget)->label_widget, style);
+#endif
 }
 
 // static