summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Martens <ama@openoffice.org>2001-02-21 13:43:07 +0000
committerAndreas Martens <ama@openoffice.org>2001-02-21 13:43:07 +0000
commit73a60024edde512024ecdb2e93378fcc4fccdd1b (patch)
tree05207eaa186d7833a660c1725a058bf74a932a13
parent6b8c452138e16541ae46a27e5a4df65adfa3a2cf (diff)
Fix #82998#: Fieldportions and follows
-rw-r--r--sw/source/core/text/porfld.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/sw/source/core/text/porfld.cxx b/sw/source/core/text/porfld.cxx
index 642c0ec17f17..fb4e0f9f24f2 100644
--- a/sw/source/core/text/porfld.cxx
+++ b/sw/source/core/text/porfld.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: porfld.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: ama $ $Date: 2001-02-15 13:42:31 $
+ * last change: $Author: ama $ $Date: 2001-02-21 14:43:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -413,7 +413,8 @@ sal_Bool SwFldPortion::Format( SwTxtFormatInfo &rInf )
else
{
xub_StrLen nOldLineStart = rInf.GetLineStart();
- rInf.SetLineStart( 0 );
+ if( IsFollow() )
+ rInf.SetLineStart( 0 );
rInf.SetNotEOL( nFullLen == nOldFullLen && nTxtRest > nFollow );
bFull = SwTxtPortion::Format( rInf );
rInf.SetNotEOL( sal_False );