summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2011-10-04 15:33:30 +0300
committerTor Lillqvist <tlillqvist@suse.com>2011-10-04 15:34:57 +0300
commitba6eedee31055a73e66c59b3ddecaa50559463c4 (patch)
tree29e74f60a85e3242406a0c75970a2c0dec12521f /xmloff
parentabe151e5dcb60d27552275d89f9e3f7e42821c65 (diff)
WaE: 'rUnitConverter' : unreferenced formal parameter
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/style/bordrhdl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/style/bordrhdl.cxx b/xmloff/source/style/bordrhdl.cxx
index 230f1082fe2e..9181827e31c9 100644
--- a/xmloff/source/style/bordrhdl.cxx
+++ b/xmloff/source/style/bordrhdl.cxx
@@ -304,7 +304,7 @@ sal_Bool XMLBorderHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue
return sal_True;
}
-sal_Bool XMLBorderHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const
+sal_Bool XMLBorderHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& /* rUnitConverter */ ) const
{
OUStringBuffer aOut;
@@ -320,7 +320,7 @@ sal_Bool XMLBorderHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue
}
else
{
- rUnitConverter.convertMeasure( aOut, nWidth,
+ SvXMLUnitConverter::convertMeasure( aOut, nWidth,
MAP_100TH_MM, MAP_POINT );
aOut.append( sal_Unicode( ' ' ) );
@@ -363,7 +363,7 @@ sal_Bool XMLBorderHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue
aOut.append( sal_Unicode( ' ' ) );
- rUnitConverter.convertColor( aOut, aBorderLine.Color );
+ SvXMLUnitConverter::convertColor( aOut, aBorderLine.Color );
}
rStrExpValue = aOut.makeStringAndClear();