]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wincmn.cpp
wxBase compilation fixes
[wxWidgets.git] / src / common / wincmn.cpp
index f044c553cd09dfa311df0ce664c054443fd476ed..9a1a983162f8922f7580fe9508b4ddd674c3aa88 100644 (file)
@@ -977,6 +977,17 @@ bool wxWindowBase::IsExposed(int x, int y, int w, int h) const
     return m_updateRegion.Contains(x, y, w, h) != wxOutRegion;
 }
 
+void wxWindowBase::ClearBackground()
+{
+    // wxGTK uses its own version, no need to add never used code
+#ifndef __WXGTK__
+    wxClientDC dc((wxWindow *)this);
+    wxBrush brush(GetBackgroundColour(), wxSOLID);
+    dc.SetBackground(brush);
+    dc.Clear();
+#endif // __WXGTK__
+}
+
 // ----------------------------------------------------------------------------
 // find child window by id or name
 // ----------------------------------------------------------------------------