diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-04 15:56:11 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-11 08:18:15 +0200 |
commit | 11bb658a60777243483fe8e682ca46e88855690a (patch) | |
tree | 43150bf47ae7b4f5919128e759439969d585184a /sd/source | |
parent | 3df902ba28f6b142277a45b781a6d65389fad6b9 (diff) |
svx: sal_Bool->bool
Change-Id: I881b262277a23dae7975b541fe0dccf0d09cb985
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/view/drviews1.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/view/drviews5.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/view/drviews1.cxx b/sd/source/ui/view/drviews1.cxx index 82d86c90104a..dd24f970c39a 100644 --- a/sd/source/ui/view/drviews1.cxx +++ b/sd/source/ui/view/drviews1.cxx @@ -1115,7 +1115,7 @@ sal_Bool DrawViewShell::IsSwitchPageAllowed() const bool bOK = true; FmFormShell* pFormShell = GetViewShellBase().GetFormShellManager()->GetFormShell(); - if (pFormShell!=NULL && !pFormShell->PrepareClose (sal_False)) + if (pFormShell != NULL && !pFormShell->PrepareClose(false)) bOK = false; return bOK; diff --git a/sd/source/ui/view/drviews5.cxx b/sd/source/ui/view/drviews5.cxx index fd3fe884d8c3..5fbbf82dc9dc 100644 --- a/sd/source/ui/view/drviews5.cxx +++ b/sd/source/ui/view/drviews5.cxx @@ -466,7 +466,7 @@ void DrawViewShell::HidePage() { FmFormShell* pFormShell = GetViewShellBase().GetFormShellManager()->GetFormShell(); if (pFormShell != NULL) - pFormShell->PrepareClose (sal_False); + pFormShell->PrepareClose(false); } |