summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2003-11-18 13:35:29 +0000
committerKurt Zenker <kz@openoffice.org>2003-11-18 13:35:29 +0000
commit5bbb07b3d5d0af4bd0a2ebf3bb123e23c0a24786 (patch)
tree298fe25e6548b24af94979d61827560d79bd552e /vcl
parent339a51aa99b92a86e3d755f4a7600ba62f3a2dcc (diff)
INTEGRATION: CWS vclplug (1.176.106); FILE MERGED
2003/10/24 13:34:54 pl 1.176.106.3: #21232# win port of virtualiing sal part 2003/10/22 13:49:49 pl 1.176.106.2: #21232# removed SalGraphicsLayout, functionality now in SalGraphics itself 2003/10/21 15:53:26 pl 1.176.106.1: #i21232# first round of virtualizing the Sal classes, Unix works, Windows to come
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/window.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index e8fb57b27bbb..e508e8c73482 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: window.cxx,v $
*
- * $Revision: 1.176 $
+ * $Revision: 1.177 $
*
- * last change: $Author: vg $ $Date: 2003-07-01 14:48:37 $
+ * last change: $Author: kz $ $Date: 2003-11-18 14:35:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -150,7 +150,6 @@
#ifndef _VCL_FONTCFG_HXX
#include <fontcfg.hxx>
#endif
-#define SYSDATA_ONLY_BASETYPE
#include <sysdata.hxx>
#ifndef _SV_SALLAYOUT_HXX
#include <sallayout.hxx>
@@ -3215,7 +3214,7 @@ void Window::ImplPosSizeWindow( long nX, long nY,
#ifndef REMOTE_APPSERVER
if( ImplHasMirroredGraphics() )
{
- ((SalGraphicsLayout*)mpGraphics)->mirror( aPtDev.X(), this );
+ mpGraphics->mirror( aPtDev.X(), this );
if( IsRTLEnabled() )
{
@@ -7279,7 +7278,7 @@ void Window::SetPointerPosPixel( const Point& rPos )
ImplReMirror( aPos );
}
// mirroring is required here, SetPointerPos bypasses SalGraphics
- ((SalGraphicsLayout*)mpGraphics)->mirror( aPos.X(), this );
+ mpGraphics->mirror( aPos.X(), this );
}
#endif
mpFrame->SetPointerPos( aPos.X(), aPos.Y() );