summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-03-22 09:44:35 +0000
committerOliver Bolte <obo@openoffice.org>2006-03-22 09:44:35 +0000
commit5dbd185d18721a436f260978d956bc9860a67382 (patch)
treeb95dab9be1399db9d329d5bf80a1ede0a840d140
parent676ce9fdad91435a0ebeed584cc470f6f7756d54 (diff)
INTEGRATION: CWS nwfrtl (1.126.18); FILE MERGED
2006/02/20 15:49:10 pl 1.126.18.2: RESYNC: (1.126-1.127); FILE MERGED 2006/02/08 12:52:47 pl 1.126.18.1: #i59503# paint event mirroring in one place instead of several
-rw-r--r--vcl/win/source/window/salframe.cxx12
1 files changed, 2 insertions, 10 deletions
diff --git a/vcl/win/source/window/salframe.cxx b/vcl/win/source/window/salframe.cxx
index 22c76f96b112..9995a1558ab3 100644
--- a/vcl/win/source/window/salframe.cxx
+++ b/vcl/win/source/window/salframe.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: salframe.cxx,v $
*
- * $Revision: 1.128 $
+ * $Revision: 1.129 $
*
- * last change: $Author: obo $ $Date: 2006-03-22 10:25:06 $
+ * last change: $Author: obo $ $Date: 2006-03-22 10:44:35 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -3983,10 +3983,6 @@ static void ImplHandlePaintMsg( HWND hWnd )
aPEvt.mnBoundWidth = aUpdateRect.right-aUpdateRect.left;
aPEvt.mnBoundHeight = aUpdateRect.bottom-aUpdateRect.top;
- // --- RTL --- (mirror paint rect)
- if( Application::GetSettings().GetLayoutRTL() )
- aPEvt.mnBoundX = pFrame->maGeometry.nWidth-aPEvt.mnBoundWidth-aPEvt.mnBoundX;
-
pFrame->CallCallback( SALEVENT_PAINT, &aPEvt );
}
else
@@ -4027,10 +4023,6 @@ static void ImplHandlePaintMsg2( HWND hWnd, RECT* pRect )
aPEvt.mnBoundWidth = pRect->right-pRect->left;
aPEvt.mnBoundHeight = pRect->bottom-pRect->top;
- // --- RTL --- (mirror paint rect)
- if( Application::GetSettings().GetLayoutRTL() )
- aPEvt.mnBoundX = pFrame->maGeometry.nWidth-aPEvt.mnBoundWidth-aPEvt.mnBoundX;
-
pFrame->CallCallback( SALEVENT_PAINT, &aPEvt );
}
ImplSalYieldMutexRelease();