From cb00a262dc9fa656436544a2ec966e707268e111 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?W=C5=82odzimierz=20Skiba?= Date: Thu, 10 Feb 2005 10:49:35 +0000 Subject: [PATCH] wxWindow::GetClientAreaOrigin duplicated wxWindowBase method. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31887 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/os2/window.h | 4 ---- src/os2/window.cpp | 5 ----- 2 files changed, 9 deletions(-) diff --git a/include/wx/os2/window.h b/include/wx/os2/window.h index f18fc3eeaa..1bf252de9a 100644 --- a/include/wx/os2/window.h +++ b/include/wx/os2/window.h @@ -188,10 +188,6 @@ public: public: - // For implementation purposes - sometimes decorations make the client area - // smaller - virtual wxPoint GetClientAreaOrigin(void) const; - // Windows subclassing void SubclassWin(WXHWND hWnd); void UnsubclassWin(void); diff --git a/src/os2/window.cpp b/src/os2/window.cpp index 9c096f077d..977e27bc94 100644 --- a/src/os2/window.cpp +++ b/src/os2/window.cpp @@ -1786,11 +1786,6 @@ void wxWindowOS2::DoSetClientSize( GetEventHandler()->ProcessEvent(vEvent); } // end of wxWindowOS2::DoSetClientSize -wxPoint wxWindowOS2::GetClientAreaOrigin() const -{ - return wxPoint(0, 0); -} // end of wxWindowOS2::GetClientAreaOrigin - // --------------------------------------------------------------------------- // text metrics // ---------------------------------------------------------------------------