diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-19 12:37:23 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-19 12:37:23 +0000 |
commit | 81591f7f07d2918dd1f35a152f2d318d3205eb90 (patch) | |
tree | 02ff11b4ead36835d9b58b4d7639b880cdc6cc0f /xmloff/source/style/xmlnume.cxx | |
parent | 0fb0f23f2d9157090ac54c52cb8c4990c2c8c263 (diff) |
INTEGRATION: CWS sixtyfour05 (1.23.108); FILE MERGED
2006/04/05 09:52:05 kendy 1.23.108.1: #i63935#
64bit: long -> sal_Int32 and the like
Diffstat (limited to 'xmloff/source/style/xmlnume.cxx')
-rw-r--r-- | xmloff/source/style/xmlnume.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/style/xmlnume.cxx b/xmloff/source/style/xmlnume.cxx index e931491e0c14..eaf55869a72d 100644 --- a/xmloff/source/style/xmlnume.cxx +++ b/xmloff/source/style/xmlnume.cxx @@ -4,9 +4,9 @@ * * $RCSfile: xmlnume.cxx,v $ * - * $Revision: 1.23 $ + * $Revision: 1.24 $ * - * last change: $Author: rt $ $Date: 2005-09-09 14:52:49 $ + * last change: $Author: hr $ $Date: 2006-04-19 13:37:23 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -300,7 +300,7 @@ void SvxXMLNumRuleExport::exportLevelStyle( INT32 nLevel, // text:level OUStringBuffer sTmp; - sTmp.append( nLevel+1L ); + sTmp.append( nLevel + 1 ); GetExport().AddAttribute( XML_NAMESPACE_TEXT, XML_LEVEL, sTmp.makeStringAndClear() ); if( sTextStyleName.getLength() > 0 ) GetExport().AddAttribute( XML_NAMESPACE_TEXT, XML_STYLE_NAME, |