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/crsrsh.hxx | |
parent | b56eb7154428045239493b6fa21b24504b147603 (diff) |
sal_Bool to bool
Change-Id: I87d6e518aebcd0074f673b84b66df27ae9a0a15a
Diffstat (limited to 'sw/inc/crsrsh.hxx')
-rw-r--r-- | sw/inc/crsrsh.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/crsrsh.hxx b/sw/inc/crsrsh.hxx index 74bc64a79816..d4044248653c 100644 --- a/sw/inc/crsrsh.hxx +++ b/sw/inc/crsrsh.hxx @@ -603,7 +603,7 @@ public: sal_Bool GoNextCell( sal_Bool bAppendLine = sal_True ); sal_Bool GoPrevCell(); // go to this box (if available and inside of table) - sal_Bool GotoTable( const String& rName ); + bool GotoTable( const String& rName ); // select a table row, column or box (based on the current cursor) sal_Bool SelTblRow() { return _SelTblRowOrCol( true ); } @@ -615,7 +615,7 @@ public: sal_Bool GotoNextNum(); sal_Bool GotoPrevNum(); - sal_Bool GotoOutline( const String& rName ); + bool GotoOutline( const String& rName ); // to the next/previous or the given OutlineNode void GotoOutline( sal_uInt16 nIdx ); // find the "outline position" in the nodes array of the current chapter @@ -752,7 +752,7 @@ public: sal_Bool BasicActionPend() const { return nBasicActionCnt != nStartAction; } - sal_Bool GotoRegion( const String& rName ); + bool GotoRegion( const String& rName ); // show the current selection virtual void MakeSelVisible(); @@ -782,7 +782,7 @@ public: sal_Bool IsPageAtPos( const Point &rPt ) const; sal_Bool SelectTxtAttr( sal_uInt16 nWhich, sal_Bool bExpand, const SwTxtAttr* pAttr = 0 ); - sal_Bool GotoINetAttr( const SwTxtINetFmt& rAttr ); + bool GotoINetAttr( const SwTxtINetFmt& rAttr ); const SwFmtINetFmt* FindINetAttr( const String& rName ) const; sal_Bool CheckTblBoxCntnt( const SwPosition* pPos = 0 ); |