From c0ae5ebe056569f7bea9572d64b5160cf77725e4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Thu, 10 Feb 2005 10:27:12 +0000 Subject: [PATCH] wxWindow::GetClientAreaOrigin duplicated wxWindowBase method. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31884 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/msw/window.h | 4 ---- src/msw/window.cpp | 7 ------- 2 files changed, 11 deletions(-) diff --git a/include/wx/msw/window.h b/include/wx/msw/window.h index 1c480cc129..fe646444e4 100644 --- a/include/wx/msw/window.h +++ b/include/wx/msw/window.h @@ -174,10 +174,6 @@ public: #endif public: - // For implementation purposes - sometimes decorations make the client area - // smaller - virtual wxPoint GetClientAreaOrigin() const; - // Windows subclassing void SubclassWin(WXHWND hWnd); void UnsubclassWin(); diff --git a/src/msw/window.cpp b/src/msw/window.cpp index 4a466af0c5..dc99d7cf4d 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -1653,13 +1653,6 @@ void wxWindowMSW::DoSetClientSize(int width, int height) } } -// For implementation purposes - sometimes decorations make the client area -// smaller -wxPoint wxWindowMSW::GetClientAreaOrigin() const -{ - return wxPoint(0, 0); -} - // --------------------------------------------------------------------------- // text metrics // --------------------------------------------------------------------------- -- 2.45.2