summaryrefslogtreecommitdiff
path: root/sw/source/core/unocore/unochart.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-10-23 18:35:04 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-10-24 09:46:07 +0900
commitcc64715977062d77ba9e3cb1c95138b0cc7639f8 (patch)
tree5c828a18330e5bc430c424091e28c59681a3aa64 /sw/source/core/unocore/unochart.cxx
parentcffdb8d6804105bc840a407a10890af556e586c9 (diff)
sal_Bool to bool
Change-Id: I47f376f431276396a9f3168a5e39e2c9e9e55cbe
Diffstat (limited to 'sw/source/core/unocore/unochart.cxx')
-rw-r--r--sw/source/core/unocore/unochart.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/unocore/unochart.cxx b/sw/source/core/unocore/unochart.cxx
index 8e3bca554c66..9ba30bdc2440 100644
--- a/sw/source/core/unocore/unochart.cxx
+++ b/sw/source/core/unocore/unochart.cxx
@@ -372,10 +372,10 @@ static void GetTableByName( const SwDoc &rDoc, const String &rTableName,
// find frame format of table
//! see SwXTextTables::getByName
- sal_uInt16 nCount = rDoc.GetTblFrmFmtCount(sal_True);
+ sal_uInt16 nCount = rDoc.GetTblFrmFmtCount(true);
for (sal_uInt16 i = 0; i < nCount && !pTblFmt; ++i)
{
- SwFrmFmt& rTblFmt = rDoc.GetTblFrmFmt(i, sal_True);
+ SwFrmFmt& rTblFmt = rDoc.GetTblFrmFmt(i, true);
if(rTableName == rTblFmt.GetName())
pTblFmt = &rTblFmt;
}