summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/documentbuilder.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-20 17:21:02 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-20 17:27:30 +0200
commitdf10d8ae13df3998ba50b815b9c40a996c40c872 (patch)
treef97c14bb3809037c99a7498ecee952121e1394ae /unoxml/source/dom/documentbuilder.cxx
parent4f8756f075e7777f4a681eb80dc002083129b5a5 (diff)
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: I97ad48b13fc5c134fea5a2a85001bbfefe6793f5
Diffstat (limited to 'unoxml/source/dom/documentbuilder.cxx')
-rw-r--r--unoxml/source/dom/documentbuilder.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unoxml/source/dom/documentbuilder.cxx b/unoxml/source/dom/documentbuilder.cxx
index eafab7e2bf9f..b460004687e0 100644
--- a/unoxml/source/dom/documentbuilder.cxx
+++ b/unoxml/source/dom/documentbuilder.cxx
@@ -149,13 +149,13 @@ namespace DOM
sal_Bool SAL_CALL CDocumentBuilder::isNamespaceAware()
throw (RuntimeException, std::exception)
{
- return sal_True;
+ return true;
}
sal_Bool SAL_CALL CDocumentBuilder::isValidating()
throw (RuntimeException, std::exception)
{
- return sal_False;
+ return false;
}
Reference< XDocument > SAL_CALL CDocumentBuilder::newDocument()