From df10d8ae13df3998ba50b815b9c40a996c40c872 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 20 Apr 2016 17:21:02 +0200 Subject: loplugin:salbool: Automatic rewrite of sal_False/True Change-Id: I97ad48b13fc5c134fea5a2a85001bbfefe6793f5 --- unoxml/source/dom/documentbuilder.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unoxml/source/dom/documentbuilder.cxx') 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() -- cgit