summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-07-16 13:50:03 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-07-16 14:00:17 +0200
commit2b88d7f90edefdaa95a1afe77596fae11daf6f4d (patch)
tree1304bd95a2f3a8c320e89f4635b01bb756be0cc8 /desktop
parent7cc9ebcaeee2a2f34a12b1e6817d8d1ef506ded1 (diff)
loplugin:simplifybool
Change-Id: I3ad64faba0e162d404668789ae4aa410004eaee2
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/deployment/misc/dp_descriptioninfoset.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
index 9ff840521a3e..e6a775ed90ff 100644
--- a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
+++ b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
@@ -203,7 +203,7 @@ ExtensionDescription::ExtensionDescription(
Reference<css::xml::dom::XDocumentBuilder> xDocBuilder(
css::xml::dom::DocumentBuilder::create(xContext) );
- if (xDocBuilder->isNamespaceAware() == sal_False)
+ if (!xDocBuilder->isNamespaceAware())
{
throw css::uno::Exception(
"Service com.sun.star.xml.dom.DocumentBuilder is not namespace aware.", 0);