summaryrefslogtreecommitdiff
path: root/xmloff/source/style/PageMasterPropHdl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/style/PageMasterPropHdl.cxx')
-rw-r--r--xmloff/source/style/PageMasterPropHdl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/style/PageMasterPropHdl.cxx b/xmloff/source/style/PageMasterPropHdl.cxx
index ac2e7bebf691..96968fee69fd 100644
--- a/xmloff/source/style/PageMasterPropHdl.cxx
+++ b/xmloff/source/style/PageMasterPropHdl.cxx
@@ -200,7 +200,7 @@ bool XMLPMPropHdl_NumLetterSync::importXML(
bool XMLPMPropHdl_NumLetterSync::exportXML(
OUString& rStrExpValue,
const Any& rValue,
- const SvXMLUnitConverter& rUnitConverter ) const
+ const SvXMLUnitConverter& /*rUnitConverter*/ ) const
{
bool bRet = false;
sal_Int16 nNumType = sal_Int16();
@@ -208,7 +208,7 @@ bool XMLPMPropHdl_NumLetterSync::exportXML(
if( rValue >>= nNumType )
{
OUStringBuffer aBuffer( 5 );
- rUnitConverter.convertNumLetterSync( aBuffer, nNumType );
+ SvXMLUnitConverter::convertNumLetterSync( aBuffer, nNumType );
rStrExpValue = aBuffer.makeStringAndClear();
bRet = !rStrExpValue.isEmpty();
}