summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-08-18 10:37:25 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-08-18 11:58:30 +0200
commitf1095b41c6506b153199a72b36fc720804ea9ebc (patch)
tree95fecb48ab3c27c23daba3c2e4f393f6e5232ce3 /sw
parenta107bdfdfc1baf73f14055262d64bf616fc0a889 (diff)
Fix missing prefix
Change-Id: I0a9df00f90b63059e6446278d7a98d1cd902de4b
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/ww8/ww8par.hxx2
-rw-r--r--sw/source/filter/ww8/ww8par6.cxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/filter/ww8/ww8par.hxx b/sw/source/filter/ww8/ww8par.hxx
index 0f5096961dea..d44e508f6a7e 100644
--- a/sw/source/filter/ww8/ww8par.hxx
+++ b/sw/source/filter/ww8/ww8par.hxx
@@ -1383,7 +1383,7 @@ private:
// a document position recorded the after-position of TOC section, managed by Read_F_TOX() and End_Field()
SwPaM* mpPosAfterTOC;
- boost::scoped_ptr< SwPosition > lastAnchorPos;
+ boost::scoped_ptr< SwPosition > mpLastAnchorPos;
bool mbCareFirstParaEndInToc;
bool mbCareLastParaEndInToc;
diff --git a/sw/source/filter/ww8/ww8par6.cxx b/sw/source/filter/ww8/ww8par6.cxx
index fb351947be25..69f8582a1c65 100644
--- a/sw/source/filter/ww8/ww8par6.cxx
+++ b/sw/source/filter/ww8/ww8par6.cxx
@@ -795,10 +795,10 @@ void wwSectionManager::CreateSep(const long nTxtPos, bool /*bMustHaveBreak*/)
if (!pSep)
return;
- if (!maSegments.empty() && mrReader.lastAnchorPos.get() && *mrReader.lastAnchorPos == *mrReader.pPaM->GetPoint())
+ if (!maSegments.empty() && mrReader.mpLastAnchorPos.get() && *mrReader.mpLastAnchorPos == *mrReader.pPaM->GetPoint())
{
bool insert = true;
- SwPaM pam( *mrReader.lastAnchorPos );
+ SwPaM pam( *mrReader.mpLastAnchorPos );
if( pam.Move(fnMoveBackward, fnGoNode))
if( SwTxtNode* txtNode = pam.GetPoint()->nNode.GetNode().GetTxtNode())
if( txtNode->Len() == 0 )
@@ -1815,7 +1815,7 @@ WW8SwFlyPara::WW8SwFlyPara( SwPaM& rPaM,
//#i53725# - absolute positioned objects have to be
// anchored at-paragraph to assure its correct anchor position.
eAnchor = FLY_AT_PARA;
- rIo.lastAnchorPos.reset( new SwPosition(*rPaM.GetPoint()));
+ rIo.mpLastAnchorPos.reset( new SwPosition(*rPaM.GetPoint()));
switch (nYBind)
{