summaryrefslogtreecommitdiff
path: root/sw/source/ui/misc/srtdlg.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-02-13 00:02:30 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-02-13 00:03:37 +0900
commit3ea4060c5d66588a59f2da26b0174cd1120bed7c (patch)
tree7d3281939e1cb16e645c413a0739bc7dd8edc8b4 /sw/source/ui/misc/srtdlg.cxx
parent1b0109aeda20ec241600972538efc03c87c78733 (diff)
sal_Bool to bool
Change-Id: I248912310658aec789f89f9dba0821b7ec86163d
Diffstat (limited to 'sw/source/ui/misc/srtdlg.cxx')
-rw-r--r--sw/source/ui/misc/srtdlg.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/ui/misc/srtdlg.cxx b/sw/source/ui/misc/srtdlg.cxx
index a0c7aff359d4..7855c879e11c 100644
--- a/sw/source/ui/misc/srtdlg.cxx
+++ b/sw/source/ui/misc/srtdlg.cxx
@@ -79,11 +79,11 @@ static void lcl_ClearLstBoxAndDelUserData( ListBox& rLstBox )
/*--------------------------------------------------------------------
Description: determine lines and columns for table selection
--------------------------------------------------------------------*/
-static sal_Bool lcl_GetSelTbl( SwWrtShell &rSh, sal_uInt16& rX, sal_uInt16& rY )
+static bool lcl_GetSelTbl( SwWrtShell &rSh, sal_uInt16& rX, sal_uInt16& rY )
{
const SwTableNode* pTblNd = rSh.IsCrsrInTbl();
if( !pTblNd )
- return sal_False;
+ return false;
_FndBox aFndBox( 0, 0 );
@@ -97,10 +97,10 @@ static sal_Bool lcl_GetSelTbl( SwWrtShell &rSh, sal_uInt16& rX, sal_uInt16& rY )
}
rX = aFndBox.GetLines().size();
if( !rX )
- return sal_False;
+ return false;
rY = aFndBox.GetLines().front().GetBoxes().size();
- return sal_True;
+ return true;
}
/*--------------------------------------------------------------------