diff options
author | Noel <noelgrandin@gmail.com> | 2020-10-01 11:00:51 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-10-01 12:23:08 +0200 |
commit | 7bd7ff5a8d938e474a8f15e2c6facad632a342bb (patch) | |
tree | 6321afdb483360b1130b0d2a0d995b6f27bbe59b /xmloff/source/draw/sdpropls.cxx | |
parent | cc2b7c1f930bc05253153f3c8381fb4fb352f3ca (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/draw/sdpropls.cxx')
-rw-r--r-- | xmloff/source/draw/sdpropls.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/draw/sdpropls.cxx b/xmloff/source/draw/sdpropls.cxx index f9a8692a49f7..36a24e2f0d84 100644 --- a/xmloff/source/draw/sdpropls.cxx +++ b/xmloff/source/draw/sdpropls.cxx @@ -878,11 +878,11 @@ bool XMLSdHeaderFooterVisibilityTypeHdl::exportXML( const SvXMLUnitConverter& ) const { bool bRet = false; - OUStringBuffer aOut; bool bValue; if (rValue >>= bValue) { + OUStringBuffer aOut; ::sax::Converter::convertBool( aOut, bValue ); rStrExpValue = aOut.makeStringAndClear(); |