summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-06-13 07:54:00 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-06-13 07:54:00 +0000
commit2b9462ecaf9066e88eaabb7e2110485ae7781282 (patch)
tree9728ac70211b111143704ad080c53f20991a1877
parent8317b264732bcc94d44eb3a7753c27eef77fec47 (diff)
INTEGRATION: CWS aquabmpfix02 (1.278.56); FILE MERGED
2008/06/02 10:20:47 hdu 1.278.56.1: #i90247# cleanup OutputDevice::ImplSelectClipRegion() signature
-rw-r--r--vcl/source/window/window.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index fa5b9210c97d..58cce91e5815 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: window.cxx,v $
- * $Revision: 1.278 $
+ * $Revision: 1.279 $
*
* This file is part of OpenOffice.org.
*
@@ -2931,7 +2931,7 @@ void Window::ImplScroll( const Rectangle& rRect,
ImplReMirror( aRegion );
}
- ImplSelectClipRegion( pGraphics, aRegion, this );
+ ImplSelectClipRegion( aRegion, pGraphics );
pGraphics->CopyArea( rRect.Left()+nHorzScroll, rRect.Top()+nVertScroll,
rRect.Left(), rRect.Top(),
rRect.GetWidth(), rRect.GetHeight(),
@@ -3383,7 +3383,7 @@ void Window::ImplPosSizeWindow( long nX, long nY,
SalGraphics* pGraphics = ImplGetFrameGraphics();
if ( pGraphics )
{
- BOOL bSelectClipRegion = ImplSelectClipRegion( pGraphics, aRegion, this );
+ const bool bSelectClipRegion = ImplSelectClipRegion( aRegion, pGraphics );
if ( bSelectClipRegion )
{
pGraphics->CopyArea( mnOutOffX, mnOutOffY,