diff options
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/docary.hxx | 1 | ||||
-rw-r--r-- | sw/inc/redline.hxx | 12 |
2 files changed, 7 insertions, 6 deletions
diff --git a/sw/inc/docary.hxx b/sw/inc/docary.hxx index fba92fb4bd8b..8b36d6a9b090 100644 --- a/sw/inc/docary.hxx +++ b/sw/inc/docary.hxx @@ -232,6 +232,7 @@ public: using _SwRedlineTbl::size_type; using _SwRedlineTbl::operator[]; using _SwRedlineTbl::empty; + using _SwRedlineTbl::Resort; }; /// Table that holds 'extra' redlines, such as 'table row insert\delete', 'paragraph moves' etc... diff --git a/sw/inc/redline.hxx b/sw/inc/redline.hxx index 17bc9b7896dd..6ff33580bc41 100644 --- a/sw/inc/redline.hxx +++ b/sw/inc/redline.hxx @@ -189,8 +189,8 @@ class SW_DLLPUBLIC SwRangeRedline : public SwPaM void MoveToSection(); void CopyToSection(); - void DelCopyOfSection(); - void MoveFromSection(); + void DelCopyOfSection(size_t nMyPos); + void MoveFromSection(size_t nMyPos); public: SwRangeRedline( RedlineType_t eType, const SwPaM& rPam ); @@ -260,10 +260,10 @@ public: // hide the Del-Redlines via Copy and Delete. // Otherwise at Move the attribution would be handled incorrectly. // All other callers must always give 0. - void CallDisplayFunc( sal_uInt16 nLoop = 0 ); - void Show( sal_uInt16 nLoop = 0 ); - void Hide( sal_uInt16 nLoop = 0 ); - void ShowOriginal( sal_uInt16 nLoop = 0 ); + void CallDisplayFunc(sal_uInt16 nLoop, size_t nMyPos); + void Show(sal_uInt16 nLoop , size_t nMyPos); + void Hide(sal_uInt16 nLoop , size_t nMyPos); + void ShowOriginal(sal_uInt16 nLoop, size_t nMyPos); /// Calculates the intersection with text node number nNdIdx. void CalcStartEnd(sal_uLong nNdIdx, sal_Int32& rStart, sal_Int32& rEnd) const; |