diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-10-30 11:27:06 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-10-30 11:50:20 +0900 |
commit | 136ae4bc2fadd558cb044217339f6b7b2e58843e (patch) | |
tree | 331c53a6eb71865082a58c03d03de2f7325572d4 /sw/inc/swcrsr.hxx | |
parent | b56eb7154428045239493b6fa21b24504b147603 (diff) |
sal_Bool to bool
Change-Id: I87d6e518aebcd0074f673b84b66df27ae9a0a15a
Diffstat (limited to 'sw/inc/swcrsr.hxx')
-rw-r--r-- | sw/inc/swcrsr.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/swcrsr.hxx b/sw/inc/swcrsr.hxx index 30901f3b2b4e..7b946d923c39 100644 --- a/sw/inc/swcrsr.hxx +++ b/sw/inc/swcrsr.hxx @@ -180,9 +180,9 @@ public: { return LeftRight( sal_False, nCnt, nMode, bAllowVisual, bSkipHidden, sal_False ); } sal_Bool GoNextCell( sal_uInt16 nCnt = 1 ) { return GoPrevNextCell( sal_True, nCnt ); } sal_Bool GoPrevCell( sal_uInt16 nCnt = 1 ) { return GoPrevNextCell( sal_False, nCnt ); } - virtual sal_Bool GotoTable( const String& rName ); + virtual bool GotoTable( const String& rName ); sal_Bool GotoTblBox( const String& rName ); - sal_Bool GotoRegion( const String& rName ); + bool GotoRegion( const String& rName ); sal_Bool GotoFtnAnchor(); sal_Bool GotoFtnTxt(); sal_Bool GotoNextFtnAnchor(); @@ -283,7 +283,7 @@ public: virtual sal_Bool LeftRight( sal_Bool bLeft, sal_uInt16 nCnt, sal_uInt16 nMode, sal_Bool bAllowVisual, sal_Bool bSkipHidden, sal_Bool bInsertCrsr ); - virtual sal_Bool GotoTable( const String& rName ); + virtual bool GotoTable( const String& rName ); void InsertBox( const SwTableBox& rTblBox ); void DeleteBox(size_t nPos); |