summaryrefslogtreecommitdiff
path: root/sw/source/core/doc/docredln.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/doc/docredln.cxx')
-rw-r--r--sw/source/core/doc/docredln.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/doc/docredln.cxx b/sw/source/core/doc/docredln.cxx
index 45af1e8e3f85..2c4ba6096c48 100644
--- a/sw/source/core/doc/docredln.cxx
+++ b/sw/source/core/doc/docredln.cxx
@@ -497,7 +497,7 @@ std::vector<std::unique_ptr<SwRangeRedline>> GetAllValidRanges(std::unique_ptr<S
if( !aNewStt.GetNode().IsContentNode() )
{
- pC = rNds.GoNext( &aNewStt );
+ pC = SwNodes::GoNext(&aNewStt);
if( !pC )
aNewStt.Assign(rNds.GetEndOfContent());
}
@@ -588,7 +588,7 @@ std::vector<std::unique_ptr<SwRangeRedline>> GetAllValidRanges(std::unique_ptr<S
if( aNewStt >= *pEnd )
break;
- pC = rNds.GoNext( &aNewStt );
+ pC = SwNodes::GoNext(&aNewStt);
if( !pC )
break;
} while( aNewStt < *pEnd );