From: Włodzimierz Skiba Date: Thu, 10 Feb 2005 10:36:29 +0000 (+0000) Subject: wxWindow::GetClientAreaOrigin duplicated wxWindowBase method. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a44f67c38235b3bf11cfd8c95b194b2d2ad74237 wxWindow::GetClientAreaOrigin duplicated wxWindowBase method. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31885 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/motif/window.h b/include/wx/motif/window.h index 1b19b931a9..5654303515 100644 --- a/include/wx/motif/window.h +++ b/include/wx/motif/window.h @@ -148,10 +148,6 @@ public: void ClearUpdateRegion() { m_updateRegion.Clear(); } void SetUpdateRegion(const wxRegion& region) { m_updateRegion = region; } - // For implementation purposes - sometimes decorations make the client area - // smaller - virtual wxPoint GetClientAreaOrigin() const; - // Process idle (send update events) void OnInternalIdle(); diff --git a/src/motif/window.cpp b/src/motif/window.cpp index aa4453bd4f..feda98f8ec 100644 --- a/src/motif/window.cpp +++ b/src/motif/window.cpp @@ -1372,13 +1372,6 @@ void wxWindow::DoSetClientSize(int width, int height) XtVaSetValues(widget, XmNheight, height, NULL); } -// For implementation purposes - sometimes decorations make the client area -// smaller -wxPoint wxWindow::GetClientAreaOrigin() const -{ - return wxPoint(0, 0); -} - void wxWindow::DoMoveWindowIntr(int xx, int yy, int w, int h, int flags) {