diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-13 11:57:14 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-14 07:50:34 +0200 |
commit | a8f721ff96121697de8a97856ba4da145fc0c14e (patch) | |
tree | d61517a1e700702de0fadee06fb64c1158a3f97e /svx | |
parent | 5fe7ecc04f35ef785510e3ef404f46eb6f05a123 (diff) |
sfx2: sal_Bool->bool
Change-Id: I626371bac4fbd9c6a2cdc5a57a3022f8b6ac55b2
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/SpellDialogChildWindow.cxx | 2 | ||||
-rw-r--r-- | svx/source/dialog/hyperdlg.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/dialog/SpellDialogChildWindow.cxx b/svx/source/dialog/SpellDialogChildWindow.cxx index 7df28dbb256e..d05e5007b5ba 100644 --- a/svx/source/dialog/SpellDialogChildWindow.cxx +++ b/svx/source/dialog/SpellDialogChildWindow.cxx @@ -40,7 +40,7 @@ SpellDialogChildWindow::SpellDialogChildWindow ( this ); pWindow = m_pAbstractSpellDialog->GetWindow(); eChildAlignment = SFX_ALIGN_NOALIGNMENT; - SetHideNotDelete (sal_True); + SetHideNotDelete(true); } SpellDialogChildWindow::~SpellDialogChildWindow (void) diff --git a/svx/source/dialog/hyperdlg.cxx b/svx/source/dialog/hyperdlg.cxx index 3ac50cd11436..31f3ffa4a160 100644 --- a/svx/source/dialog/hyperdlg.cxx +++ b/svx/source/dialog/hyperdlg.cxx @@ -79,7 +79,7 @@ SvxHlinkDlgWrapper::SvxHlinkDlgWrapper( Window* _pParent, sal_uInt16 nId, eChildAlignment = SFX_ALIGN_NOALIGNMENT; - SetHideNotDelete( sal_True ); + SetHideNotDelete( true ); } SfxChildWinInfo SvxHlinkDlgWrapper::GetInfo() const @@ -89,7 +89,7 @@ SfxChildWinInfo SvxHlinkDlgWrapper::GetInfo() const sal_Bool SvxHlinkDlgWrapper::QueryClose() { - return mpDlg ? mpDlg->QueryClose() : sal_True; + return !mpDlg || mpDlg->QueryClose(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |