summaryrefslogtreecommitdiff
path: root/sw/source/core/doc/gctable.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-11-08 12:16:44 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-11-08 13:11:58 +0900
commit88e457dc60b7a7e5f4048e00c0418bc57537c029 (patch)
treeec2a698dea3a5356f641c45ec5ee32746cd5d207 /sw/source/core/doc/gctable.cxx
parentb668d3aaf5690bd067c0ed283e9492ae576117f9 (diff)
sal_Bool to bool
Change-Id: Idfbc33106b20b06c5247c50d099972305f016a51
Diffstat (limited to 'sw/source/core/doc/gctable.cxx')
-rw-r--r--sw/source/core/doc/gctable.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/doc/gctable.cxx b/sw/source/core/doc/gctable.cxx
index 3bd51109fa6e..2a2e31290b15 100644
--- a/sw/source/core/doc/gctable.cxx
+++ b/sw/source/core/doc/gctable.cxx
@@ -41,7 +41,7 @@ inline const SvxBorderLine* GetLineTB( const SvxBoxItem* pBox, bool bTop )
}
-sal_Bool _SwGCBorder_BoxBrd::CheckLeftBorderOfFormat( const SwFrmFmt& rFmt )
+bool _SwGCBorder_BoxBrd::CheckLeftBorderOfFormat( const SwFrmFmt& rFmt )
{
const SvxBorderLine* pBrd;
const SfxPoolItem* pItem;
@@ -49,10 +49,10 @@ sal_Bool _SwGCBorder_BoxBrd::CheckLeftBorderOfFormat( const SwFrmFmt& rFmt )
0 != ( pBrd = ((SvxBoxItem*)pItem)->GetLeft() ) )
{
if( *pBrdLn == *pBrd )
- bAnyBorderFnd = sal_True;
- return sal_True;
+ bAnyBorderFnd = true;
+ return true;
}
- return sal_False;
+ return false;
}