diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-07-16 13:53:48 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-07-16 14:00:19 +0200 |
commit | 35279a7e2d9bb18373c69c6922c240447be92104 (patch) | |
tree | 8b96ed2e179df426ab8a273d8137dfb886b7d57c /scripting/source | |
parent | e82bc17d87762f99594ab046a02d1f358e77e30b (diff) |
loplugin:simplifybool
Change-Id: Ic179c3012ad99a97b11914bf7aefca58829621e0
Diffstat (limited to 'scripting/source')
-rw-r--r-- | scripting/source/provider/MasterScriptProvider.cxx | 4 | ||||
-rw-r--r-- | scripting/source/vbaevents/eventhelper.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scripting/source/provider/MasterScriptProvider.cxx b/scripting/source/provider/MasterScriptProvider.cxx index b2e229b62cd9..5c8422e41a7b 100644 --- a/scripting/source/provider/MasterScriptProvider.cxx +++ b/scripting/source/provider/MasterScriptProvider.cxx @@ -267,8 +267,8 @@ throw ( provider::ScriptFrameworkErrorException, OUString langKey("language"); OUString locKey("location"); - if ( sfUri->hasParameter( langKey ) == sal_False || - sfUri->hasParameter( locKey ) == sal_False || + if ( !sfUri->hasParameter( langKey ) || + !sfUri->hasParameter( locKey ) || ( sfUri->getName().isEmpty() ) ) { OUString errorMsg = "Incorrect format for Script URI: "; diff --git a/scripting/source/vbaevents/eventhelper.cxx b/scripting/source/vbaevents/eventhelper.cxx index a34c2735e09f..976f1534e18d 100644 --- a/scripting/source/vbaevents/eventhelper.cxx +++ b/scripting/source/vbaevents/eventhelper.cxx @@ -491,7 +491,7 @@ public: virtual Type SAL_CALL getElementType( ) throw (RuntimeException, std::exception) SAL_OVERRIDE { return cppu::UnoType<OUString>::get(); } virtual sal_Bool SAL_CALL hasElements( ) throw (RuntimeException, std::exception) SAL_OVERRIDE - { return ( ( m_hEvents.empty() ? sal_False : sal_True ) ); } + { return !m_hEvents.empty(); } private: typedef std::unordered_map< OUString, Any, OUStringHash, |