From: Vadim Zeitlin Date: Wed, 17 Oct 2007 18:22:15 +0000 (+0000) Subject: remove wxWindow::Clear() from wxDFB and wxMGL which was unused (probably replaced... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e256b53a3d9f7ced77836808ffe342205c585bcc remove wxWindow::Clear() from wxDFB and wxMGL which was unused (probably replaced by ClearBackground()) and conflicted with methods with the same name in other classes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49202 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/dfb/window.h b/include/wx/dfb/window.h index 0d60daebe6..2fc0544cd2 100644 --- a/include/wx/dfb/window.h +++ b/include/wx/dfb/window.h @@ -75,7 +75,6 @@ public: virtual void Refresh(bool eraseBackground = true, const wxRect *rect = (const wxRect *) NULL); virtual void Update(); - virtual void Clear(); virtual void Freeze(); virtual void Thaw(); virtual bool IsFrozen() const { return m_frozenness > 0; } diff --git a/include/wx/mgl/window.h b/include/wx/mgl/window.h index 074cc19b5b..4c3091bd4f 100644 --- a/include/wx/mgl/window.h +++ b/include/wx/mgl/window.h @@ -68,7 +68,6 @@ public: virtual void Refresh(bool eraseBackground = true, const wxRect *rect = (const wxRect *) NULL); virtual void Update(); - virtual void Clear(); virtual void Freeze(); virtual void Thaw(); diff --git a/src/dfb/window.cpp b/src/dfb/window.cpp index 2470e530ba..78146c966e 100644 --- a/src/dfb/window.cpp +++ b/src/dfb/window.cpp @@ -565,14 +565,6 @@ void wxWindowDFB::GetTextExtent(const wxString& string, // painting // --------------------------------------------------------------------------- -void wxWindowDFB::Clear() -{ - wxClientDC dc((wxWindow *)this); - wxBrush brush(GetBackgroundColour(), wxSOLID); - dc.SetBackground(brush); - dc.Clear(); -} - void wxWindowDFB::Refresh(bool WXUNUSED(eraseBack), const wxRect *rect) { if ( !IsShown() || IsFrozen() ) diff --git a/src/mgl/window.cpp b/src/mgl/window.cpp index caa7490178..082e7dc7c8 100644 --- a/src/mgl/window.cpp +++ b/src/mgl/window.cpp @@ -1099,14 +1099,6 @@ void wxWindowMGL::GetTextExtent(const wxString& string, // painting // --------------------------------------------------------------------------- -void wxWindowMGL::Clear() -{ - wxClientDC dc((wxWindow *)this); - wxBrush brush(GetBackgroundColour(), wxSOLID); - dc.SetBackground(brush); - dc.Clear(); -} - void wxWindowMGL::Refresh(bool eraseBack, const wxRect *rect) { if ( m_eraseBackground == -1 )