diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-06-15 01:03:22 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-06-15 01:16:20 +0200 |
commit | f4a4fee523ff8a6d272eabda2ce9ca96bd3bbbb1 (patch) | |
tree | eb39b9b4bffdcddc4db8d213504342e2052cfe21 /extensions/source | |
parent | c128736aad595cdb4de9ced2b6471f1c05806546 (diff) |
loplugin:literalalternative
Change-Id: Ie2af2b013f95e8cdf7aab82498ce686dfa965cc8
Diffstat (limited to 'extensions/source')
-rw-r--r-- | extensions/source/update/check/updateprotocol.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/update/check/updateprotocol.cxx b/extensions/source/update/check/updateprotocol.cxx index 59ef0d935364..7ad265189832 100644 --- a/extensions/source/update/check/updateprotocol.cxx +++ b/extensions/source/update/check/updateprotocol.cxx @@ -171,7 +171,7 @@ checkForUpdates( { uno::Reference< xml::dom::XElement > xParent(xNode2->getParentNode(), uno::UNO_QUERY_THROW); OUString aType = xParent->getAttribute("type"); - bool bIsDirect = ( sal_False == aType.equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("text/html")) ); + bool bIsDirect = !aType.equalsIgnoreAsciiCase("text/html"); o_rUpdateInfo.Sources.push_back( DownloadSource(bIsDirect, xNode2->getNodeValue()) ); } |