From b4d4ede795cbdbb813197fcfaac43e80af4ea566 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 24 Mar 2014 11:22:45 +0200 Subject: svtools/svtabbax.hxx: sal_Bool->bool Change-Id: I2441e15d2b32b897561cb404a925390299fea6d8 --- sw/source/core/uibase/misc/redlndlg.cxx | 4 ++-- sw/source/ui/dbui/addresslistdialog.cxx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'sw') diff --git a/sw/source/core/uibase/misc/redlndlg.cxx b/sw/source/core/uibase/misc/redlndlg.cxx index ef31f5321e9b..ebb8b6ee8853 100644 --- a/sw/source/core/uibase/misc/redlndlg.cxx +++ b/sw/source/core/uibase/misc/redlndlg.cxx @@ -621,7 +621,7 @@ void SwRedlineAcceptDlg::RemoveParents(sal_uInt16 nStart, sal_uInt16 nEnd) pTable->SetSelectHdl(aOldSelectHdl); pTable->SetDeselectHdl(aOldDeselectHdl); bool bChildrenRemoved = false; - pTable->SelectAll(sal_False); + pTable->SelectAll(false); // set the cursor after the last entry because otherwise performance problem in TLB. // TLB would otherwise reset the cursor at every Remove (expensive) @@ -679,7 +679,7 @@ void SwRedlineAcceptDlg::RemoveParents(sal_uInt16 nStart, sal_uInt16 nEnd) pTable->SetSelectHdl(LINK(this, SwRedlineAcceptDlg, SelectHdl)); pTable->SetDeselectHdl(LINK(this, SwRedlineAcceptDlg, DeselectHdl)); // unfortunately by Remove it was selected from the TLB always again ... - pTable->SelectAll(sal_False); + pTable->SelectAll(false); aRedlineParents.erase( aRedlineParents.begin() + nStart, aRedlineParents.begin() + nEnd + 1); } diff --git a/sw/source/ui/dbui/addresslistdialog.cxx b/sw/source/ui/dbui/addresslistdialog.cxx index 4037f748d740..f7ca4aeac8db 100644 --- a/sw/source/ui/dbui/addresslistdialog.cxx +++ b/sw/source/ui/dbui/addresslistdialog.cxx @@ -223,7 +223,7 @@ SwAddressListDialog::SwAddressListDialog(SwMailMergeAddressBlockPage* pParent) sal_Bool bEnableEdit = sal_False; sal_Bool bEnableOK = sal_True; - m_pListLB->SelectAll( sal_False ); + m_pListLB->SelectAll( false ); SwDBConfig aDb; OUString sBibliography = aDb.GetBibliographySource().sDataSource; -- cgit