summaryrefslogtreecommitdiff
path: root/vcl/source/window/window3.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 18:43:13 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 18:43:13 +0000
commit24f2084ebb2bd5452a15885c902c1a5a8c627d7e (patch)
tree083c3cca59ef2c0f973e7051bdb808308cf61368 /vcl/source/window/window3.cxx
parentf01ff754e8c5a72ffd745934b0caa4f37871ab3a (diff)
INTEGRATION: CWS warnings01 (1.6.22); FILE MERGED
2006/04/20 14:49:37 sb 1.6.22.1: #i53898# Made code compile and/or warning-free again after resync to SRC680m162 (done by PL).
Diffstat (limited to 'vcl/source/window/window3.cxx')
-rw-r--r--vcl/source/window/window3.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/vcl/source/window/window3.cxx b/vcl/source/window/window3.cxx
index f42a15cae912..dec9f98cd2a5 100644
--- a/vcl/source/window/window3.cxx
+++ b/vcl/source/window/window3.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: window3.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: obo $ $Date: 2006-03-22 10:39:33 $
+ * last change: $Author: hr $ $Date: 2006-06-19 19:43:13 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -120,7 +120,7 @@ BOOL Window::HitTestNativeControl( ControlType nType,
// -----------------------------------------------------------------------
-void Window::ImplMoveControlValue( ControlType nType, ControlPart nPart, const ImplControlValue& aValue, const Point& rDelta ) const
+void Window::ImplMoveControlValue( ControlType nType, const ImplControlValue& aValue, const Point& rDelta ) const
{
if( aValue.getOptionalVal() )
{
@@ -201,7 +201,7 @@ BOOL Window::DrawNativeControl( ControlType nType,
screenRegion.Move( aWinOffs.X(), aWinOffs.Y());
// do so for ImplControlValue members, also
- ImplMoveControlValue( nType, nPart, aValue, aWinOffs );
+ ImplMoveControlValue( nType, aValue, aWinOffs );
Region aTestRegion( GetActiveClipRegion() );
aTestRegion.Intersect( rControlRegion );
@@ -211,7 +211,7 @@ BOOL Window::DrawNativeControl( ControlType nType,
BOOL bRet = mpGraphics->DrawNativeControl(nType, nPart, screenRegion, nState, aValue, *ImplGetWinData()->mpSalControlHandle, aCaption, this );
// transform back ImplControlValue members
- ImplMoveControlValue( nType, nPart, aValue, Point()-aWinOffs );
+ ImplMoveControlValue( nType, aValue, Point()-aWinOffs );
return bRet;
}
@@ -252,12 +252,12 @@ BOOL Window::DrawNativeControlText(ControlType nType,
aWinOffs = OutputToScreenPixel( aWinOffs );
Region screenRegion( rControlRegion );
screenRegion.Move( aWinOffs.X(), aWinOffs.Y());
- ImplMoveControlValue( nType, nPart, aValue, aWinOffs );
+ ImplMoveControlValue( nType, aValue, aWinOffs );
BOOL bRet = mpGraphics->DrawNativeControlText(nType, nPart, screenRegion, nState, aValue, *ImplGetWinData()->mpSalControlHandle, aCaption, this );
// transform back ImplControlValue members
- ImplMoveControlValue( nType, nPart, aValue, Point()-aWinOffs );
+ ImplMoveControlValue( nType, aValue, Point()-aWinOffs );
return bRet;
}
@@ -289,7 +289,7 @@ BOOL Window::GetNativeControlRegion( ControlType nType,
aWinOffs = OutputToScreenPixel( aWinOffs );
Region screenRegion( rControlRegion );
screenRegion.Move( aWinOffs.X(), aWinOffs.Y());
- ImplMoveControlValue( nType, nPart, aValue, aWinOffs );
+ ImplMoveControlValue( nType, aValue, aWinOffs );
BOOL bRet = mpGraphics->GetNativeControlRegion(nType, nPart, screenRegion, nState, aValue,
*ImplGetWinData()->mpSalControlHandle, aCaption, rNativeBoundingRegion,
@@ -301,7 +301,7 @@ BOOL Window::GetNativeControlRegion( ControlType nType,
rNativeContentRegion.Move( -aWinOffs.X(), -aWinOffs.Y() );
}
// transform back ImplControlValue members
- ImplMoveControlValue( nType, nPart, aValue, Point()-aWinOffs );
+ ImplMoveControlValue( nType, aValue, Point()-aWinOffs );
return bRet;
}