summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-24 11:22:45 +0200
committerNoel Grandin <noel@peralex.com>2014-03-25 14:32:54 +0200
commitb4d4ede795cbdbb813197fcfaac43e80af4ea566 (patch)
tree17bedd4ba0d0d0fd348a03dda2f72cf2c03339d6 /sw
parentf5864e8ff4958268b50b15bc4c60c3d0fcfe20d9 (diff)
svtools/svtabbax.hxx: sal_Bool->bool
Change-Id: I2441e15d2b32b897561cb404a925390299fea6d8
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/uibase/misc/redlndlg.cxx4
-rw-r--r--sw/source/ui/dbui/addresslistdialog.cxx2
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 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;