summaryrefslogtreecommitdiff
path: root/vcl/source/window/splitwin.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2003-04-17 14:19:34 +0000
committerRüdiger Timm <rt@openoffice.org>2003-04-17 14:19:34 +0000
commit08383128378ec09dcb854226edd3b6e4a218113e (patch)
tree68d88c4f397d85788af34f9473fc22015da2c4ea /vcl/source/window/splitwin.cxx
parent81ac314653e75c2afc0556fc3ccb5c1630e8f5b7 (diff)
INTEGRATION: CWS vcl08 (1.3.8.3.18); FILE MERGED
2003/04/10 15:13:09 cd 1.3.8.3.18.1: #108605# Don't change maDragRect with alignment LEFT or TOP
Diffstat (limited to 'vcl/source/window/splitwin.cxx')
-rw-r--r--vcl/source/window/splitwin.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/vcl/source/window/splitwin.cxx b/vcl/source/window/splitwin.cxx
index 59b7ba919b2e..13373b8abf6d 100644
--- a/vcl/source/window/splitwin.cxx
+++ b/vcl/source/window/splitwin.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: splitwin.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: hr $ $Date: 2003-03-27 17:58:23 $
+ * last change: $Author: rt $ $Date: 2003-04-17 15:19:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1444,7 +1444,6 @@ void SplitWindow::ImplSetWindowSize( long nDelta )
Size aSize = GetSizePixel();
if ( meAlign == WINDOWALIGN_TOP )
{
- maDragRect.Bottom() -= nDelta;
aSize.Height() += nDelta;
SetSizePixel( aSize );
}
@@ -1458,7 +1457,6 @@ void SplitWindow::ImplSetWindowSize( long nDelta )
}
else if ( meAlign == WINDOWALIGN_LEFT )
{
- maDragRect.Right() -= nDelta;
aSize.Width() += nDelta;
SetSizePixel( aSize );
}