diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-07-16 13:50:03 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-07-16 14:00:17 +0200 |
commit | 2b88d7f90edefdaa95a1afe77596fae11daf6f4d (patch) | |
tree | 1304bd95a2f3a8c320e89f4635b01bb756be0cc8 /desktop | |
parent | 7cc9ebcaeee2a2f34a12b1e6817d8d1ef506ded1 (diff) |
loplugin:simplifybool
Change-Id: I3ad64faba0e162d404668789ae4aa410004eaee2
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/deployment/misc/dp_descriptioninfoset.cxx | 2 |
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); |