summaryrefslogtreecommitdiff
path: root/sw/source/core/edit/editsh.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-30 12:15:41 +0200
committerNoel Grandin <noel@peralex.com>2016-08-31 10:00:07 +0200
commit8b52d4e73a06d433d128d61a4939e92e4a497d71 (patch)
tree7888aa54b430ea537ad7c8adb59379163d4d4a64 /sw/source/core/edit/editsh.cxx
parentfd405ab457183f1c0d48d47bbd3308edb2e30242 (diff)
convert SwDocPositions to scoped enum
Change-Id: Idd9414b4a10398130337e474fb8fd4063e3bd4f8
Diffstat (limited to 'sw/source/core/edit/editsh.cxx')
-rw-r--r--sw/source/core/edit/editsh.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/edit/editsh.cxx b/sw/source/core/edit/editsh.cxx
index 20b576547a53..d7147837468e 100644
--- a/sw/source/core/edit/editsh.cxx
+++ b/sw/source/core/edit/editsh.cxx
@@ -729,9 +729,9 @@ void SwEditShell::SetNumberingRestart()
for(int i = 0; i < 2; i++)
{
if(!i)
- MakeFindRange(DOCPOS_START, DOCPOS_END, pCursor); // body content
+ MakeFindRange(SwDocPositions::Start, SwDocPositions::End, pCursor); // body content
else
- MakeFindRange(DOCPOS_OTHERSTART, DOCPOS_OTHEREND, pCursor); // extra content
+ MakeFindRange(SwDocPositions::OtherStart, SwDocPositions::OtherEnd, pCursor); // extra content
SwPosition* pSttPos = pCursor->Start(), *pEndPos = pCursor->End();
sal_uLong nCurrNd = pSttPos->nNode.GetIndex();
sal_uLong nEndNd = pEndPos->nNode.GetIndex();