diff options
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/undobj.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sw/inc/undobj.hxx b/sw/inc/undobj.hxx index cece9260a7f0..11da23447f4a 100644 --- a/sw/inc/undobj.hxx +++ b/sw/inc/undobj.hxx @@ -449,8 +449,6 @@ public: void SetTableName(const String & rName); // SwUndoTblCpyTbl needs this information: - long NodeDiff() const { return nSttNode - nEndNode; } - xub_StrLen ContentStart() const { return nSttCntnt; } BOOL IsDelFullPara() const { return bDelFullPara; } DECL_FIXEDMEMPOOL_NEWDEL(SwUndoDelete) @@ -1760,6 +1758,10 @@ public: SwUndoRedlineDelete( const SwPaM& rRange, SwUndoId nUserId = UNDO_EMPTY ); BOOL CanGrouping( const SwUndoRedlineDelete& rPrev ); + + // SwUndoTblCpyTbl needs this information: + long NodeDiff() const { return nSttNode - nEndNode; } + xub_StrLen ContentStart() const { return nSttCntnt; } }; class SwUndoRedlineSort : public SwUndoRedline |