diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:20:00 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:27:26 +0200 |
commit | a34ded25d61c61c5c25792a1bace4970a754afc6 (patch) | |
tree | ed4b6314f650aa23b5446c78eb6556dbd8ace2e1 /svtools/source/uno/statusbarcontroller.cxx | |
parent | 58a6d1f042d75d53a55077f0c8ef24feebf3473b (diff) |
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: I706d2b85ba6a49ee34f9fe88a960943e87079902
Diffstat (limited to 'svtools/source/uno/statusbarcontroller.cxx')
-rw-r--r-- | svtools/source/uno/statusbarcontroller.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/uno/statusbarcontroller.cxx b/svtools/source/uno/statusbarcontroller.cxx index eede3ba0da08..430e22a7709f 100644 --- a/svtools/source/uno/statusbarcontroller.cxx +++ b/svtools/source/uno/statusbarcontroller.cxx @@ -304,21 +304,21 @@ sal_Bool SAL_CALL StatusbarController::mouseButtonDown( const css::awt::MouseEvent& ) throw (css::uno::RuntimeException, std::exception) { - return sal_False; + return false; } sal_Bool SAL_CALL StatusbarController::mouseMove( const css::awt::MouseEvent& ) throw (css::uno::RuntimeException, std::exception) { - return sal_False; + return false; } sal_Bool SAL_CALL StatusbarController::mouseButtonUp( const css::awt::MouseEvent& ) throw (css::uno::RuntimeException, std::exception) { - return sal_False; + return false; } void SAL_CALL StatusbarController::command( @@ -495,7 +495,7 @@ void StatusbarController::bindListener() // UI disables the button. Catch exception as we release our mutex, it is possible // that someone else already disposed this instance! FeatureStateEvent aFeatureStateEvent; - aFeatureStateEvent.IsEnabled = sal_False; + aFeatureStateEvent.IsEnabled = false; aFeatureStateEvent.FeatureURL = rListener.aURL; aFeatureStateEvent.State = Any(); xStatusListener->statusChanged( aFeatureStateEvent ); |