summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Schäfer <ssa@openoffice.org>2002-09-16 07:00:05 +0000
committerStephan Schäfer <ssa@openoffice.org>2002-09-16 07:00:05 +0000
commit0c957df97d5f78332e1a0fd7cc7f2e1bd019bd87 (patch)
treebb251cabf335a6c8492824aed000bc484d11b649
parentea939c5b2739bf5e394bd49bf2a73edbe9c599f6 (diff)
#100860# window positioning
-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 c6566f977a97..43b46cdcf24e 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: window.cxx,v $
*
- * $Revision: 1.140 $
+ * $Revision: 1.141 $
*
- * last change: $Author: ssa $ $Date: 2002-09-13 16:02:34 $
+ * last change: $Author: ssa $ $Date: 2002-09-16 08:00:05 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -3173,7 +3173,7 @@ void Window::ImplPosSizeWindow( long nX, long nY,
if( IsRTLEnabled() )
{
// --- RTL --- check if parent is in different coordinates
- if( mpParent && mpParent->ImplHasMirroredGraphics() && !mpParent->IsRTLEnabled() )
+ if( mpParent && !mpParent->mbFrame && mpParent->ImplHasMirroredGraphics() && !mpParent->IsRTLEnabled() )
{
// --- RTL --- (re-mirror at parent window)
nX = mpParent->mnOutWidth - mnOutWidth - 1 - nX;