summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
authorFrank Meies <fme@openoffice.org>2001-05-16 14:01:19 +0000
committerFrank Meies <fme@openoffice.org>2001-05-16 14:01:19 +0000
commit129151c6d3c8ba223d2981f1b8cbf8a9261777ee (patch)
treee0a3489a0f6681dfc3957410f36fbb646d0a1ad4 /sw/source
parentb68faeda4635e721b797c0c293c9c53bdb1c9922 (diff)
Fix #87079#: USHORT too small for Y coordinate
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/core/text/pormulti.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/text/pormulti.cxx b/sw/source/core/text/pormulti.cxx
index 600736ea4ec5..bfad4be8f53e 100644
--- a/sw/source/core/text/pormulti.cxx
+++ b/sw/source/core/text/pormulti.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pormulti.cxx,v $
*
- * $Revision: 1.35 $
+ * $Revision: 1.36 $
*
- * last change: $Author: fme $ $Date: 2001-05-16 11:26:24 $
+ * last change: $Author: fme $ $Date: 2001-05-16 15:01:19 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1301,7 +1301,7 @@ void SwTxtPainter::PaintMultiPortion( const SwRect &rPaint,
// old values must be saved and restored at the end
xub_StrLen nOldLen = GetInfo().GetLen();
KSHORT nOldX = KSHORT(GetInfo().X());
- KSHORT nOldY = KSHORT(GetInfo().Y());
+ long nOldY = GetInfo().Y();
xub_StrLen nOldIdx = GetInfo().GetIdx();
SwSpaceManipulator aManip( GetInfo(), rMulti );