diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-10 16:26:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-11 08:18:25 +0200 |
commit | e60fe3c7443eb2bbfdb57eab6cd9b62896b526af (patch) | |
tree | 6a41e67feeda4cea03b180e5fd395dc6f2596a36 /sw | |
parent | 2ec560e3e687746735d9debb304e9f64384daa65 (diff) |
svx: sal_Bool->bool
Change-Id: I25415a15abc5c65eeca106b1f444fb9711e8ce4a
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/uibase/misc/redlndlg.cxx | 2 | ||||
-rw-r--r-- | sw/source/core/uibase/shells/textfld.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/uibase/misc/redlndlg.cxx b/sw/source/core/uibase/misc/redlndlg.cxx index a46e9dce2e95..ef31f5321e9b 100644 --- a/sw/source/core/uibase/misc/redlndlg.cxx +++ b/sw/source/core/uibase/misc/redlndlg.cxx @@ -1077,7 +1077,7 @@ IMPL_LINK_NOARG(SwRedlineAcceptDlg, CommandHdl) rRedline.GetRedlineData().GetTimeStamp() ), SID_ATTR_POSTIT_DATE )); - AbstractSvxPostItDialog* pDlg = pFact->CreateSvxPostItDialog( pParentDlg, aSet, sal_False ); + AbstractSvxPostItDialog* pDlg = pFact->CreateSvxPostItDialog( pParentDlg, aSet, false ); OSL_ENSURE(pDlg, "Dialogdiet fail!"); pDlg->HideAuthor(); diff --git a/sw/source/core/uibase/shells/textfld.cxx b/sw/source/core/uibase/shells/textfld.cxx index 5b336ff25aee..8a8c88085b60 100644 --- a/sw/source/core/uibase/shells/textfld.cxx +++ b/sw/source/core/uibase/shells/textfld.cxx @@ -851,7 +851,7 @@ IMPL_LINK( SwTextShell, RedlineNextHdl, AbstractSvxPostItDialog *, pBtn ) pSh->EndAction(); } - pDlg->EnableTravel(bEnable, sal_True); + pDlg->EnableTravel(bEnable, true); if( pSh->IsCrsrPtAtEnd() ) pSh->SwapPam(); @@ -901,7 +901,7 @@ IMPL_LINK( SwTextShell, RedlinePrevHdl, AbstractSvxPostItDialog *, pBtn ) pSh->EndAction(); } - pDlg->EnableTravel(sal_True, bEnable); + pDlg->EnableTravel(true, bEnable); pRedline = pSh->GetCurrRedline(); OUString sComment = convertLineEnd(pRedline->GetComment(), GetSystemLineEnd()); |