summaryrefslogtreecommitdiff
path: root/sw/source/core/doc/docbm.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/doc/docbm.cxx')
-rw-r--r--sw/source/core/doc/docbm.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/doc/docbm.cxx b/sw/source/core/doc/docbm.cxx
index 730da32625d4..fb741e749fb5 100644
--- a/sw/source/core/doc/docbm.cxx
+++ b/sw/source/core/doc/docbm.cxx
@@ -281,7 +281,7 @@ namespace
if ( pNode == nullptr)
{
SwNodeIndex aEnd(rEnd);
- pNode = rEnd.GetNodes().GoNext( &aEnd );
+ pNode = SwNodes::GoNext(&aEnd);
bPosAtEndOfNode = false;
}
if ( pNode == nullptr )
@@ -2058,7 +2058,7 @@ void DelBookmarks(
bool bStt = true;
SwContentNode* pCNd = pRStt->GetNode().GetContentNode();
if( !pCNd )
- pCNd = rDoc.GetNodes().GoNext( pRStt );
+ pCNd = SwNodes::GoNext(pRStt);
if (!pCNd)
{
bStt = false;
@@ -2089,7 +2089,7 @@ void DelBookmarks(
{
bStt = true;
pREnd->Assign(rEnd);
- pCNd = rDoc.GetNodes().GoNext( pREnd );
+ pCNd = SwNodes::GoNext(pREnd);
if( !pCNd )
{
*pREnd = *pRStt;