Bunch of GTK theme changes.

Make wxStatusBar use themes.
  SetStatusText() now uses Refresh() since I don't
    know why it shouldn't.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15228 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2002-04-21 16:43:15 +00:00
parent c7de4135b6
commit f90566f5c3
5 changed files with 87 additions and 105 deletions

View File

@@ -1569,9 +1569,7 @@ void wxWindowDC::Clear()
if (m_owner)
{
int width,height;
m_owner->GetSize( &width, &height );
gdk_draw_rectangle( m_window, m_bgGC, TRUE, 0, 0, width, height );
m_owner->Clear();
return;
}