]> git.saurik.com Git - wxWidgets.git/commitdiff
removed AdjustForParentClientOrigin from wxMotif and all its forks
authorVáclav Slavík <vslavik@fastmail.fm>
Sun, 24 Feb 2002 00:08:45 +0000 (00:08 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sun, 24 Feb 2002 00:08:45 +0000 (00:08 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14379 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

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

index 9284faf7649cd862fe52280f7e523b38217a7992..93f03ca231a26e9afad9f171685083c3a7929914 100644 (file)
@@ -175,10 +175,6 @@ protected:
     // event handlers (not virtual by design)
     void OnIdle(wxIdleEvent& event);
     
-    // Makes an adjustment to the window position (for example, a frame that has
-    // a toolbar that it manages itself).
-    virtual void AdjustForParentClientOrigin(int& x, int& y, int sizeFlags);
-    
     wxWindow *GetChild(int number) const
     { return GetChildren().Item(number)->GetData(); }
     
index e7ef074f99572bf7aed23287589b9e82b8775e2d..90863adfca4b8ae650db376f169b399276195cab 100644 (file)
@@ -153,10 +153,6 @@ public:
     wxWindow *GetFocusWidget();
     
 protected:
-    // Makes an adjustment to the window position (for example, a frame that has
-    // a toolbar that it manages itself).
-    virtual void AdjustForParentClientOrigin(int& x, int& y, int sizeFlags);
-    
     // Responds to colour changes: passes event on to children.
     void OnSysColourChanged(wxSysColourChangedEvent& event);
     
index cbdac0a7ce8c1b15a5936f576cd47635bb2bbb57..e51b353f980b61795fd9209a41ff9bc859bbc48d 100644 (file)
@@ -1366,17 +1366,6 @@ wxPoint wxWindow::GetClientAreaOrigin() const
     return wxPoint(0, 0);
 }
 
-// Makes an adjustment to the window position (for example, a frame that has
-// a toolbar that it manages itself).
-void wxWindow::AdjustForParentClientOrigin(int& x, int& y, int sizeFlags)
-{
-    if (((sizeFlags & wxSIZE_NO_ADJUSTMENTS) == 0) && GetParent())
-    {
-        wxPoint pt(GetParent()->GetClientAreaOrigin());
-        x += pt.x; y += pt.y;
-    }
-}
-
 void wxWindow::SetSizeHints(int minW, int minH, int maxW, int maxH, int incW, int incH)
 {
     m_minWidth = minW;