summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-17 09:12:00 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-17 08:59:30 +0100
commit20ff62d319d9a8195a59d5b27ccc52d9000992c0 (patch)
treef32c6393778d7718e1cdda7f2281f8dfbf4dd591 /unotools
parent8eb2d2972583b909a249f5b0f22a9b1fbf533d24 (diff)
loplugin:expandablemethods
Change-Id: Ifc269d9996928085a3ab78033788465b4f029368 Reviewed-on: https://gerrit.libreoffice.org/85255 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/config/confignode.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/config/confignode.cxx b/unotools/source/config/confignode.cxx
index 286cbb671215..59c5fbba8224 100644
--- a/unotools/source/config/confignode.cxx
+++ b/unotools/source/config/confignode.cxx
@@ -161,7 +161,7 @@ namespace utl
OUString OConfigurationNode::normalizeName(const OUString& _rName, NAMEORIGIN _eOrigin) const
{
OUString sName(_rName);
- if (getEscape())
+ if (m_bEscapeNames)
{
Reference< XStringEscape > xEscaper(m_xDirectAccess, UNO_QUERY);
if (xEscaper.is() && !sName.isEmpty())