summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-05-17 09:07:53 +0300
committerTor Lillqvist <tml@collabora.com>2016-05-17 09:07:53 +0300
commit4555ffb1a815b6b80ec5cf7dfcb03fed957c0461 (patch)
tree073ab55e04c63c41bf2bfb74815c5db560cf7fb0
parentf2ae310d4ddd2cad8091a584e9e7855c38cfbe2f (diff)
loplugin:stringconstant
Change-Id: I3e45e701740f7d4a5698a0df319721bc596a8d94
-rw-r--r--sw/source/uibase/uno/unotxdoc.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/uno/unotxdoc.cxx b/sw/source/uibase/uno/unotxdoc.cxx
index 9616aff993a4..3a8a7ada5119 100644
--- a/sw/source/uibase/uno/unotxdoc.cxx
+++ b/sw/source/uibase/uno/unotxdoc.cxx
@@ -2572,7 +2572,7 @@ sal_Int32 SAL_CALL SwXTextDocument::getRendererCount(
const beans::PropertyValue *pProps = rxOptions.getConstArray();
for (sal_Int32 i = 0; i < nLen; ++i)
{
- if (pProps[i].Name.equalsAscii( "ExportPlaceholders" ))
+ if (pProps[i].Name == "ExportPlaceholders")
{
pProps[i].Value >>= setShowPlaceHoldersInPDF;
break;