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

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

index 669e17cd803738e14ee19c7f06250656e7a5ae64..b4642112b539c1fa11cdbcc189e1204d9c3d90c9 100644 (file)
@@ -145,10 +145,6 @@ public:
     static void DoChangeForegroundColour(WXWindow widget, wxColour& foregroundColour);
     static void DoChangeBackgroundColour(WXWindow widget, wxColour& backgroundColour, bool changeArmColour = FALSE);
     
-    // For implementation purposes - sometimes decorations make the client area
-    // smaller
-    virtual wxPoint GetClientAreaOrigin() const;
-    
     // I don't want users to override what's done in idle so everything that
     // has to be done in idle time in order for wxX11 to work is done in
     // OnInternalIdle
index b8e83b9f02baa5f6758624fd89ba409a09834490..a76272ca40d3ada711eac133b9be0a736a060c1a 100644 (file)
@@ -873,13 +873,6 @@ void wxWindowX11::DoSetClientSize(int width, int height)
     }
 }
 
-// For implementation purposes - sometimes decorations make the client area
-// smaller
-wxPoint wxWindowX11::GetClientAreaOrigin() const
-{
-    return wxPoint(0, 0);
-}
-
 void wxWindowX11::DoMoveWindow(int x, int y, int width, int height)
 {
     Window xwindow = (Window) m_mainWindow;