summaryrefslogtreecommitdiff
path: root/xmloff/source/style/lspachdl.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mst@openoffice.org>2011-10-11 14:19:00 +0200
committerMichael Stahl <mst@openoffice.org>2011-10-11 17:57:00 +0200
commit3ca2bef76886450058d1667703aeafe4c2e456c3 (patch)
treeb18d70f79bfcfd2b2e34790e86edafb4c4337a80 /xmloff/source/style/lspachdl.cxx
parent02c32e0f0e75a9df80888051d1ec189fa14129bd (diff)
#i108468#: clean up xmluconv code duplication, part 1:
move convertNumber64 from SvXMLUnitConverter to sax::converter. remove duplicate methods from SvXMLUnitConverter: convertBool, convertPercent, convertColor, convertNumber, convertDouble, indexOfComma, encodeBase64, decodeBase64, decodeBase64SomeChars, clearUndefinedChars
Diffstat (limited to 'xmloff/source/style/lspachdl.cxx')
-rw-r--r--xmloff/source/style/lspachdl.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/xmloff/source/style/lspachdl.cxx b/xmloff/source/style/lspachdl.cxx
index 27fa7582cf46..7a2e86a70f4e 100644
--- a/xmloff/source/style/lspachdl.cxx
+++ b/xmloff/source/style/lspachdl.cxx
@@ -33,6 +33,7 @@
#include <lspachdl.hxx>
#include <xmloff/xmltoken.hxx>
#include <xmloff/xmluconv.hxx>
+#include <sax/tools/converter.hxx>
#include <rtl/ustrbuf.hxx>
#include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/style/LineSpacing.hpp>
@@ -68,7 +69,7 @@ sal_Bool XMLLineHeightHdl::importXML( const OUString& rStrImpValue, uno::Any& rV
if( -1 != rStrImpValue.indexOf( sal_Unicode( '%' ) ) )
{
aLSp.Mode = style::LineSpacingMode::PROP;
- if(!rUnitConverter.convertPercent( nTemp, rStrImpValue ))
+ if (!::sax::Converter::convertPercent( nTemp, rStrImpValue ))
return sal_False;
aLSp.Height = sal::static_int_cast< sal_Int16 >(nTemp);
}
@@ -102,7 +103,7 @@ sal_Bool XMLLineHeightHdl::exportXML( OUString& rStrExpValue, const uno::Any& rV
if( style::LineSpacingMode::PROP == aLSp.Mode )
{
- rUnitConverter.convertPercent( aOut, aLSp.Height );
+ ::sax::Converter::convertPercent( aOut, aLSp.Height );
}
else
{