diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-24 10:52:02 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-24 10:53:17 +0200 |
commit | b45a12c37d2b671e54404afda5dee1b0947bd3ed (patch) | |
tree | 484fa50da87e5434970c774527a77e0dd079e1b9 /sd/source/ui/app/tbxww.cxx | |
parent | e4e654e40575300eaab429a6b94348bf43b9d7ce (diff) |
sd: sal_Bool->bool
Change-Id: I3172a42f6b6abe434ffe0475d1201ff50b6c06ea
Diffstat (limited to 'sd/source/ui/app/tbxww.cxx')
-rw-r--r-- | sd/source/ui/app/tbxww.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/app/tbxww.cxx b/sd/source/ui/app/tbxww.cxx index 5669e44a9c16..a736f881ed94 100644 --- a/sd/source/ui/app/tbxww.cxx +++ b/sd/source/ui/app/tbxww.cxx @@ -199,7 +199,7 @@ void SdTbxControl::StateChanged( sal_uInt16 nSId, /*-------------------------------------------------------------------------*/ -sal_Bool SdTbxControl::IsCheckable( sal_uInt16 nSId ) +bool SdTbxControl::IsCheckable( sal_uInt16 nSId ) { switch( nSId ) { @@ -305,9 +305,9 @@ sal_Bool SdTbxControl::IsCheckable( sal_uInt16 nSId ) case SID_CONNECTOR_LINES_CIRCLE_END: case SID_CONNECTOR_LINES_CIRCLES: - return( sal_True ); + return true; } - return( sal_False ); + return false; } |