summaryrefslogtreecommitdiff
path: root/xmloff/source/text/XMLIndexTOCContext.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-28 14:35:37 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-03 07:26:26 +0000
commit82e9cfc9910005e55f57ab13dd685f8860f47d27 (patch)
treef0fa33b4a665bef70f2ffa3e5b73727a9e6d8057 /xmloff/source/text/XMLIndexTOCContext.cxx
parenteb7593daa4bac21bd68182c8bbbd3ee3bd7b64dd (diff)
use Any constructor for bool values, instead of temporary vars
mostly found with: git grep -n 'setValue.*cppu.*UnoType.*bool.*get' Change-Id: Ie8e5aa6402d25dbe90b0f492031a245bb222c1a5 Reviewed-on: https://gerrit.libreoffice.org/24464 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmloff/source/text/XMLIndexTOCContext.cxx')
-rw-r--r--xmloff/source/text/XMLIndexTOCContext.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/xmloff/source/text/XMLIndexTOCContext.cxx b/xmloff/source/text/XMLIndexTOCContext.cxx
index 6dbe66af19fe..2e82090ae777 100644
--- a/xmloff/source/text/XMLIndexTOCContext.cxx
+++ b/xmloff/source/text/XMLIndexTOCContext.cxx
@@ -131,7 +131,7 @@ void XMLIndexTOCContext::StartElement(
// find text:protected and set value
// find text:name and set value (if not empty)
sal_Int16 nCount = xAttrList->getLength();
- sal_Bool bProtected = false;
+ bool bProtected = false;
OUString sIndexName;
OUString sXmlId;
XMLPropStyleContext* pStyle(nullptr);
@@ -241,8 +241,7 @@ void XMLIndexTOCContext::StartElement(
}
Any aAny;
- aAny.setValue( &bProtected, cppu::UnoType<bool>::get() );
- xTOCPropertySet->setPropertyValue( sIsProtected, aAny );
+ xTOCPropertySet->setPropertyValue( sIsProtected, Any(bProtected) );
if (!sIndexName.isEmpty())
{