summaryrefslogtreecommitdiff
path: root/sw/source/core/doc/doccorr.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-22 10:08:07 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-22 10:08:07 +0200
commit85825e0fd54551735ef05b8484f71974734b9135 (patch)
tree8bece458e55c1b5eab7559076579bf76cca8df68 /sw/source/core/doc/doccorr.cxx
parentfc233b52ce2acc1bcd7cecc3d51bcab870c81932 (diff)
Avoid reserved identifiers
Change-Id: I27ff0f4f0eb395d7e0a60dd604758c220a3134c4
Diffstat (limited to 'sw/source/core/doc/doccorr.cxx')
-rw-r--r--sw/source/core/doc/doccorr.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/doc/doccorr.cxx b/sw/source/core/doc/doccorr.cxx
index a93cc46acb04..9496e968cfd9 100644
--- a/sw/source/core/doc/doccorr.cxx
+++ b/sw/source/core/doc/doccorr.cxx
@@ -111,7 +111,7 @@ void PaMCorrAbs( const SwPaM& rRange,
} while ( (_pStackCursor != nullptr ) &&
((_pStackCursor = static_cast<SwPaM *>(_pStackCursor->GetNext())) != pCursorShell->GetStackCursor()) );
- for(SwPaM& rPaM : const_cast<SwShellCursor*>(pCursorShell->_GetCursor())->GetRingContainer())
+ for(SwPaM& rPaM : const_cast<SwShellCursor*>(pCursorShell->GetCursor_())->GetRingContainer())
{
lcl_PaMCorrAbs( rPaM, aStart, aEnd, aNewPos );
}
@@ -214,7 +214,7 @@ void SwDoc::CorrAbs(
SwPosition aStart(*rRange.Start());
SwPosition aEnd(*rRange.End());
- _DelBookmarks( aStart.nNode, aEnd.nNode, nullptr, &aStart.nContent, &aEnd.nContent );
+ DelBookmarks( aStart.nNode, aEnd.nNode, nullptr, &aStart.nContent, &aEnd.nContent );
if(bMoveCursor)
::PaMCorrAbs(rRange, rNewPos);
@@ -226,7 +226,7 @@ void SwDoc::CorrAbs(
const SwPosition& rNewPos,
bool bMoveCursor )
{
- _DelBookmarks( rStartNode, rEndNode );
+ DelBookmarks( rStartNode, rEndNode );
if(bMoveCursor)
{
@@ -262,7 +262,7 @@ void PaMCorrRel( const SwNodeIndex &rOldNode,
} while ( (_pStackCursor != nullptr ) &&
((_pStackCursor = static_cast<SwPaM *>(_pStackCursor->GetNext())) != pCursorShell->GetStackCursor()) );
- SwPaM* pStartPaM = pCursorShell->_GetCursor();
+ SwPaM* pStartPaM = pCursorShell->GetCursor_();
for(SwPaM& rPaM : pStartPaM->GetRingContainer())
{
lcl_PaMCorrRel1( &rPaM, pOldNode, aNewPos, nCntIdx);