diff options
Diffstat (limited to 'sw/inc/node.hxx')
-rw-r--r-- | sw/inc/node.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/node.hxx b/sw/inc/node.hxx index ee28196e338a..9dea06353c6f 100644 --- a/sw/inc/node.hxx +++ b/sw/inc/node.hxx @@ -394,8 +394,8 @@ public: virtual SwCntntNode *JoinPrev(); /** Is it possible to join two nodes? In pIdx the second position can be returned. */ - int CanJoinNext( SwNodeIndex* pIdx =0 ) const; - int CanJoinPrev( SwNodeIndex* pIdx =0 ) const; + bool CanJoinNext( SwNodeIndex* pIdx =0 ) const; + bool CanJoinPrev( SwNodeIndex* pIdx =0 ) const; void MakeStartIndex( SwIndex * pIdx ) { pIdx->Assign( this, 0 ); } void MakeEndIndex( SwIndex * pIdx ) { pIdx->Assign( this, Len() ); } |