diff options
author | Kurt Zenker <kz@openoffice.org> | 2003-11-18 13:33:45 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2003-11-18 13:33:45 +0000 |
commit | e7ca0a1827b360d3cab4da3184ae2babab9c558a (patch) | |
tree | 5386dd4fe8166cdf34c956d6703ece64ee0e7c6f /vcl/source/gdi | |
parent | e76e7a97d65c8f582de150818839b8ec964b0221 (diff) |
INTEGRATION: CWS vclplug (1.13.164); FILE MERGED
2003/10/22 13:49:43 pl 1.13.164.1: #21232# removed SalGraphicsLayout, functionality now in SalGraphics itself
Diffstat (limited to 'vcl/source/gdi')
-rw-r--r-- | vcl/source/gdi/outdev2.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/gdi/outdev2.cxx b/vcl/source/gdi/outdev2.cxx index 936755fb9ca7..b2807cd7a86f 100644 --- a/vcl/source/gdi/outdev2.cxx +++ b/vcl/source/gdi/outdev2.cxx @@ -2,9 +2,9 @@ * * $RCSfile: outdev2.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: rt $ $Date: 2003-04-24 14:56:48 $ + * last change: $Author: kz $ $Date: 2003-11-18 14:33:45 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -324,7 +324,7 @@ void OutputDevice::ImplDrawOutDevDirect( const OutputDevice* pSrcDev, void* pVoi if( (GetOutDevType() != OUTDEV_WINDOW) && pGraphics2 && (pGraphics2->GetLayout() & SAL_LAYOUT_BIDI_RTL) ) { SalTwoRect pPosAry2 = *pPosAry; - ((SalGraphicsLayout*)pGraphics2)->mirror( pPosAry2.mnSrcX, pPosAry2.mnSrcWidth, pSrcDev ); + pGraphics2->mirror( pPosAry2.mnSrcX, pPosAry2.mnSrcWidth, pSrcDev ); mpGraphics->CopyBits( &pPosAry2, pGraphics2, this, pSrcDev ); } else |