summaryrefslogtreecommitdiff
path: root/sw/source/filter/rtf
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-11-18 21:44:44 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-11-19 08:25:58 +0900
commit52c492ca729295ab53b110edf525a3eed25872f7 (patch)
tree81c7cbf5a3636574367cde18ba5d583186eb0d85 /sw/source/filter/rtf
parentd7c69b2e9dd0986ad82a615d22447a223244096c (diff)
sal_Bool to bool
Change-Id: Ia6a4cd46b3bda875baeb9fcdda98a1964aedf841
Diffstat (limited to 'sw/source/filter/rtf')
-rw-r--r--sw/source/filter/rtf/rtftbl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/rtf/rtftbl.cxx b/sw/source/filter/rtf/rtftbl.cxx
index 6e90c94a0a7f..844e642494d6 100644
--- a/sw/source/filter/rtf/rtftbl.cxx
+++ b/sw/source/filter/rtf/rtftbl.cxx
@@ -53,7 +53,7 @@ typedef std::vector<SwTableBoxFmt*> SwBoxFrmFmts;
class SwShareBoxFmts;
extern void _DeleteBox( SwTable& rTbl, SwTableBox* pBox, SwUndo* = 0,
- sal_Bool = sal_True, const sal_Bool = sal_True, SwShareBoxFmts* = 0 );
+ bool = true, const bool = true, SwShareBoxFmts* = 0 );
struct Row
{
@@ -556,7 +556,7 @@ void SwRTFParser::ReadTable( int nToken )
pPam->SetMark(); pPam->DeleteMark();
while( n < pNewLine->GetTabBoxes().size() )
_DeleteBox( pTableNode->GetTable(),
- pNewLine->GetTabBoxes()[ n ], 0, sal_False, sal_False );
+ pNewLine->GetTabBoxes()[ n ], 0, false, false );
}
pOldTblNd = pTableNode;