]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/textctrl.cpp
fix for precompiled headers
[wxWidgets.git] / src / gtk / textctrl.cpp
index 77ecdef60d0089cf0c3eae9697dad38b3bed9021..ed3763b0799842d93c4469389ff374593ca3fafc 100644 (file)
@@ -464,4 +464,12 @@ void wxTextCtrl::SetFont( const wxFont &font )
   gtk_widget_set_style( m_text, style );
 }
 
+// as our GTK widget is m_text and not m_widget, we have to override
+// SetBackgroundColour() to make it work
+void wxTextCtrl::SetBackgroundColour( const wxColour &colour )
+{
+  wxCHECK_RET( m_text != NULL, "invalid text ctrl" );
 
+  // NB: the GtkEntry and GtkText classes have text_area at the same offset
+  SetBackgroundColourHelper( colour, GTK_TEXT(m_text)->text_area );
+}