+void wxMacMLTEHIViewControl::SetBackground( const wxBrush &brush )
+{
+ wxMacMLTEControl::SetBackground( brush ) ;
+/*
+ CGColorSpaceRef rgbSpace = CGColorSpaceCreateDeviceRGB();
+ RGBColor col = MAC_WXCOLORREF(brush.GetColour().GetPixel()) ;
+
+ float component[4] ;
+ component[0] = col.red / 65536.0 ;
+ component[1] = col.green / 65536.0 ;
+ component[2] = col.blue / 65536.0 ;
+ component[3] = 1.0 ; // alpha
+
+ CGColorRef color = CGColorCreate (rgbSpace , component );
+ HITextViewSetBackgroundColor( m_textView , color ) ;
+ CGColorSpaceRelease( rgbSpace );
+*/
+}
+