summaryrefslogtreecommitdiff
path: root/sax/source
diff options
context:
space:
mode:
authorSascha Ballach <sab@openoffice.org>2001-12-12 08:23:09 +0000
committerSascha Ballach <sab@openoffice.org>2001-12-12 08:23:09 +0000
commite0fbc9b0a52b32b837bc86f3d289495282bc11b7 (patch)
tree7a804b2e2525788d400e40ed20cbf383d531a59f /sax/source
parent6b77bdce4670cdf38395524bacd4138cf3c75257 (diff)
#95850#; only indent by the level and not one more space
Diffstat (limited to 'sax/source')
-rw-r--r--sax/source/expatwrap/saxwriter.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sax/source/expatwrap/saxwriter.cxx b/sax/source/expatwrap/saxwriter.cxx
index 7b3e3893fd45..fb1f87d81831 100644
--- a/sax/source/expatwrap/saxwriter.cxx
+++ b/sax/source/expatwrap/saxwriter.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: saxwriter.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: sab $ $Date: 2001-11-26 07:54:30 $
+ * last change: $Author: sab $ $Date: 2001-12-12 09:23:09 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1008,7 +1008,7 @@ sal_Int32 SAXWriter::getIndentPrefixLength( sal_Int32 nFirstLineBreakOccurence )
if( m_bForceLineBreak ||
m_bAllowLineBreak &&
((nFirstLineBreakOccurence + mp_SaxWriterHelper->GetLastColumnCount()) > MAXCOLUMNCOUNT) )
- nLength = m_nLevel +1;
+ nLength = m_nLevel;
}
m_bForceLineBreak = sal_False;
m_bAllowLineBreak = sal_False;