diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-27 09:29:41 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-27 13:45:10 +0200 |
commit | e9745e3a7fff649a03252a22f72d1d16aa162dad (patch) | |
tree | 9a179f1333f59f82ba591325b349a840c43ebfb3 /sfx2/source/statbar | |
parent | 12f49da9baed5798a9dcb1814ff740f6b6a059db (diff) |
sfx2/stbitem.hxx: sal_Bool->bool
Change-Id: I7303d9533551fcfa7c7a99c9592402511492165a
Diffstat (limited to 'sfx2/source/statbar')
-rw-r--r-- | sfx2/source/statbar/stbitem.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sfx2/source/statbar/stbitem.cxx b/sfx2/source/statbar/stbitem.cxx index 48c2023f6668..e205733741d8 100644 --- a/sfx2/source/statbar/stbitem.cxx +++ b/sfx2/source/statbar/stbitem.cxx @@ -459,7 +459,7 @@ void SfxStatusBarControl::StateChanged -sal_Bool SfxStatusBarControl::MouseButtonDown( const MouseEvent & ) +bool SfxStatusBarControl::MouseButtonDown( const MouseEvent & ) /* [Description] @@ -481,12 +481,12 @@ sal_Bool SfxStatusBarControl::MouseButtonDown( const MouseEvent & ) */ { - return sal_False; + return false; } -sal_Bool SfxStatusBarControl::MouseMove( const MouseEvent & ) +bool SfxStatusBarControl::MouseMove( const MouseEvent & ) /* [Description] @@ -508,12 +508,12 @@ sal_Bool SfxStatusBarControl::MouseMove( const MouseEvent & ) */ { - return sal_False; + return false; } -sal_Bool SfxStatusBarControl::MouseButtonUp( const MouseEvent & ) +bool SfxStatusBarControl::MouseButtonUp( const MouseEvent & ) /* [Description] @@ -535,7 +535,7 @@ sal_Bool SfxStatusBarControl::MouseButtonUp( const MouseEvent & ) */ { - return sal_False; + return false; } |