summaryrefslogtreecommitdiff
path: root/xmloff/source/style/chrhghdl.cxx
diff options
context:
space:
mode:
authorNoel <noelgrandin@gmail.com>2020-10-01 11:00:51 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-10-01 12:23:08 +0200
commit7bd7ff5a8d938e474a8f15e2c6facad632a342bb (patch)
tree6321afdb483360b1130b0d2a0d995b6f27bbe59b /xmloff/source/style/chrhghdl.cxx
parentcc2b7c1f930bc05253153f3c8381fb4fb352f3ca (diff)
loplugin:reducevarscope in xmloff
Change-Id: Ib67311f84a6a7a490afb392e642d74693fde3113 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103747 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff/source/style/chrhghdl.cxx')
-rw-r--r--xmloff/source/style/chrhghdl.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/xmloff/source/style/chrhghdl.cxx b/xmloff/source/style/chrhghdl.cxx
index c6f04f34008f..5417800c6d18 100644
--- a/xmloff/source/style/chrhghdl.cxx
+++ b/xmloff/source/style/chrhghdl.cxx
@@ -135,11 +135,10 @@ bool XMLCharHeightDiffHdl::importXML( const OUString& rStrImpValue, uno::Any& rV
bool XMLCharHeightDiffHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
{
- OUStringBuffer aOut;
-
float nRel = 0;
if( (rValue >>= nRel) && (nRel != 0) )
{
+ OUStringBuffer aOut;
::sax::Converter::convertMeasure( aOut, static_cast<sal_Int32>(nRel),
util::MeasureUnit::POINT, util::MeasureUnit::POINT );
rStrExpValue = aOut.makeStringAndClear();