diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:21:19 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:27:30 +0200 |
commit | d0a271e9ea476d627de7e4d15dc490574d3afeba (patch) | |
tree | 7440627f145b0ed89b400dc7ac6c6905b8e8c4f7 /include/vbahelper/vbahelperinterface.hxx | |
parent | ed36962e464c26803009852684e2330bf954db02 (diff) |
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: I94b3d976bd6d4cd3ce918668a5a921857675b6c9
Diffstat (limited to 'include/vbahelper/vbahelperinterface.hxx')
-rw-r--r-- | include/vbahelper/vbahelperinterface.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vbahelper/vbahelperinterface.hxx b/include/vbahelper/vbahelperinterface.hxx index d72200771350..7e1b5f3b75b6 100644 --- a/include/vbahelper/vbahelperinterface.hxx +++ b/include/vbahelper/vbahelperinterface.hxx @@ -87,8 +87,8 @@ public: const OUString* pEnd = pStart + sServices.getLength(); for ( ; pStart != pEnd ; ++pStart ) if ( (*pStart).equals( ServiceName ) ) - return sal_True; - return sal_False; + return true; + return false; } virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw (css::uno::RuntimeException) override { |