Kaydet (Commit) 4385e822 authored tarafından Thomas Arnhold's avatar Thomas Arnhold

callcatcher: actually remove the right one

üst b7442df1
...@@ -427,7 +427,7 @@ public: ...@@ -427,7 +427,7 @@ public:
SAL_DLLPRIVATE void ImplPointToLogic( Font& rFont ) const; SAL_DLLPRIVATE void ImplPointToLogic( Font& rFont ) const;
SAL_DLLPRIVATE void ImplLogicToPoint( Font& rFont ) const; SAL_DLLPRIVATE void ImplLogicToPoint( Font& rFont ) const;
SAL_DLLPRIVATE Point ImplOutputToFrame( const Point& rPos ); SAL_DLLPRIVATE Point ImplOutputToFrame( const Point& rPos );
SAL_DLLPRIVATE void ImplFrameToOutput( Rectangle& rRect ); SAL_DLLPRIVATE Point ImplFrameToOutput( const Point& rPos );
SAL_DLLPRIVATE sal_Bool ImplSysObjClip( const Region* pOldRegion ); SAL_DLLPRIVATE sal_Bool ImplSysObjClip( const Region* pOldRegion );
SAL_DLLPRIVATE void ImplUpdateSysObjChildsClip(); SAL_DLLPRIVATE void ImplUpdateSysObjChildsClip();
SAL_DLLPRIVATE void ImplUpdateSysObjOverlapsClip(); SAL_DLLPRIVATE void ImplUpdateSysObjOverlapsClip();
......
...@@ -1434,12 +1434,9 @@ Point Window::ImplOutputToFrame( const Point& rPos ) ...@@ -1434,12 +1434,9 @@ Point Window::ImplOutputToFrame( const Point& rPos )
return Point( rPos.X()+mnOutOffX, rPos.Y()+mnOutOffY ); return Point( rPos.X()+mnOutOffX, rPos.Y()+mnOutOffY );
} }
void Window::ImplFrameToOutput( Rectangle& rRect ) Point Window::ImplFrameToOutput( const Point& rPos )
{ {
rRect.Left()-=mnOutOffX; return Point( rPos.X()-mnOutOffX, rPos.Y()-mnOutOffY );
rRect.Top()-=mnOutOffY;
rRect.Right()-=mnOutOffX;
rRect.Bottom()-=mnOutOffY;
} }
void Window::SetCompoundControl( sal_Bool bCompound ) void Window::SetCompoundControl( sal_Bool bCompound )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment