From c3e3f466571e4993c1b5e42c6d15e37c48f3a069 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 18 Mar 2014 11:23:57 +0200 Subject: sfx2: sal_Bool->bool Change-Id: I375a72c34e46778385a9fdc24c9ebd0f0a3f3c9b --- svx/source/form/fmshell.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'svx/source/form/fmshell.cxx') 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); -- cgit