diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-18 11:23:57 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-18 11:27:39 +0200 |
commit | c3e3f466571e4993c1b5e42c6d15e37c48f3a069 (patch) | |
tree | 538fb90ed2c05e725f28ff16d41fd27ca38a7573 /svx/source/form/fmshell.cxx | |
parent | e399c0759812affd4f7f6e1e3aacfbcafc06ad6d (diff) |
sfx2: sal_Bool->bool
Change-Id: I375a72c34e46778385a9fdc24c9ebd0f0a3f3c9b
Diffstat (limited to 'svx/source/form/fmshell.cxx')
-rw-r--r-- | svx/source/form/fmshell.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/form/fmshell.cxx b/svx/source/form/fmshell.cxx index b336f9c5f9ac..d7f37c636124 100644 --- a/svx/source/form/fmshell.cxx +++ b/svx/source/form/fmshell.cxx @@ -321,9 +321,9 @@ void FmFormShell::impl_setDesignMode(bool bDesign) } -sal_Bool FmFormShell::HasUIFeature( sal_uInt32 nFeature ) +bool FmFormShell::HasUIFeature( sal_uInt32 nFeature ) { - sal_Bool bResult = sal_False; + bool bResult = false; if ((nFeature & FM_UI_FEATURE_SHOW_DATABASEBAR) == FM_UI_FEATURE_SHOW_DATABASEBAR) { // nur wenn auch formulare verfuegbar @@ -363,7 +363,7 @@ sal_Bool FmFormShell::HasUIFeature( sal_uInt32 nFeature ) || ( ( nFeature & FM_UI_FEATURE_TB_FORMDESIGN ) == FM_UI_FEATURE_TB_FORMDESIGN ) ) { - bResult = sal_True; + bResult = true; } return bResult; @@ -1251,7 +1251,7 @@ void FmFormShell::SetY2KState(sal_uInt16 n) } -void FmFormShell::Activate(sal_Bool bMDI) +void FmFormShell::Activate(bool bMDI) { SfxShell::Activate(bMDI); @@ -1260,7 +1260,7 @@ void FmFormShell::Activate(sal_Bool bMDI) } -void FmFormShell::Deactivate(sal_Bool bMDI) +void FmFormShell::Deactivate(bool bMDI) { SfxShell::Deactivate(bMDI); |