summaryrefslogtreecommitdiff
path: root/sw/source/ui/index/cnttab.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-02-20 00:58:47 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-02-20 09:37:32 +0900
commit03d5d88911111076b1c668d2eae30b5690bb564a (patch)
tree613d395a3a273e25150520db0c1fd10fc2a44e01 /sw/source/ui/index/cnttab.cxx
parent8e12daed4f79f4835dc2d8b83609e306617837ca (diff)
sal_Bool to bool
Change-Id: I87266c0b2aff04b888d7b201c00b36156d82fe93
Diffstat (limited to 'sw/source/ui/index/cnttab.cxx')
-rw-r--r--sw/source/ui/index/cnttab.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/index/cnttab.cxx b/sw/source/ui/index/cnttab.cxx
index 5702bd3e9a08..165fdb2c1dd8 100644
--- a/sw/source/ui/index/cnttab.cxx
+++ b/sw/source/ui/index/cnttab.cxx
@@ -761,11 +761,11 @@ SwAddStylesDlg_Impl::SwAddStylesDlg_Impl(Window* pParent,
if(rName.Len() > 0)
{
SvTreeListEntry* pEntry = rTLB.First();
- sal_Bool bFound = sal_False;
+ bool bFound = false;
while(pEntry && !bFound)
{
if(rTLB.GetEntryText(pEntry) == rName)
- bFound = sal_True;
+ bFound = true;
pEntry = rTLB.Next(pEntry);
}
if(!bFound)