]> git.saurik.com Git - wxWidgets.git/commitdiff
wxWindow::GetClientAreaOrigin duplicated wxWindowBase method.
authorWłodzimierz Skiba <abx@abx.art.pl>
Thu, 10 Feb 2005 10:36:29 +0000 (10:36 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Thu, 10 Feb 2005 10:36:29 +0000 (10:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31885 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/motif/window.h
src/motif/window.cpp

index 1b19b931a9eafa7e207879e546d45b5bd15b28ab..56543035159849c0671cc2d9b26f3cc0ad29c6a2 100644 (file)
@@ -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();
     
index aa4453bd4f567d2122854cff85efc06a9e87a4df..feda98f8ec996f75d66da878ad9029272f3730aa 100644 (file)
@@ -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)
 {