summaryrefslogtreecommitdiff
path: root/sw/source/core/doc/doccorr.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2013-02-18 07:54:37 +0100
committerMiklos Vajna <vmiklos@suse.cz>2013-02-18 07:59:13 +0100
commit2c9f9832fc6ab78e12c67da3687b4482a46e4bcc (patch)
treed7bfa6f3223f57010fa41f2ef4414d628a4e5ff3 /sw/source/core/doc/doccorr.cxx
parentfdf59cc3b5928aa1b4fca62909988c455695cd03 (diff)
SwDoc: rename member variables missing their prefix
Change-Id: Id4683649aa9115f9075717768aa6cef4110c2ad2
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 50868ead3d50..d7537fee7d14 100644
--- a/sw/source/core/doc/doccorr.cxx
+++ b/sw/source/core/doc/doccorr.cxx
@@ -197,7 +197,7 @@ void SwDoc::CorrAbs(const SwNodeIndex& rOldNode,
getIDocumentMarkAccess()->correctMarksAbsolute(rOldNode, rNewPos, nOffset);
{ // fix redlines
- SwRedlineTbl& rTbl = *pRedlineTbl;
+ SwRedlineTbl& rTbl = *mpRedlineTbl;
for (sal_uInt16 n = 0; n < rTbl.size(); )
{
// is on position ??
@@ -315,7 +315,7 @@ void SwDoc::CorrRel(const SwNodeIndex& rOldNode,
getIDocumentMarkAccess()->correctMarksRelative(rOldNode, rNewPos, nOffset);
{ // fix the Redlines
- SwRedlineTbl& rTbl = *pRedlineTbl;
+ SwRedlineTbl& rTbl = *mpRedlineTbl;
SwPosition aNewPos(rNewPos);
for( sal_uInt16 n = 0; n < rTbl.size(); ++n )
{
@@ -332,9 +332,9 @@ void SwDoc::CorrRel(const SwNodeIndex& rOldNode,
SwEditShell* SwDoc::GetEditShell( ViewShell** ppSh ) const
{
// Layout and OLE shells should be available
- if( pCurrentView )
+ if( mpCurrentView )
{
- ViewShell *pSh = pCurrentView, *pVSh = pSh;
+ ViewShell *pSh = mpCurrentView, *pVSh = pSh;
if( ppSh )
*ppSh = pSh;