From 2c1019739b1a15971b894b7e382de097894af47c Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Fri, 4 Sep 2015 09:03:42 +0200 Subject: svx: prefix members of SdrPaintView 'mpModel=pModel' is more readable than 'pMod=pModel1'. Change-Id: I617d85e2c2d4b6b5b0d235cdd3cd9129e276b28d --- svx/source/svdraw/svdglev.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'svx/source/svdraw/svdglev.cxx') diff --git a/svx/source/svdraw/svdglev.cxx b/svx/source/svdraw/svdglev.cxx index 7f2faba3fa0e..cf771b170727 100644 --- a/svx/source/svdraw/svdglev.cxx +++ b/svx/source/svdraw/svdglev.cxx @@ -81,7 +81,7 @@ void SdrGlueEditView::ImpDoMarkedGluePoints(PGlueDoFunc pDoFunc, bool bConst, co } } } - if (!bConst && nMarkCount!=0) pMod->SetChanged(); + if (!bConst && nMarkCount!=0) mpModel->SetChanged(); } @@ -262,7 +262,7 @@ void SdrGlueEditView::DeleteMarkedGluePoints() EndUndo(); UnmarkAllGluePoints(); if (nMarkCount!=0) - pMod->SetChanged(); + mpModel->SetChanged(); } @@ -312,7 +312,7 @@ void SdrGlueEditView::ImpCopyMarkedGluePoints() EndUndo(); if (nMarkCount!=0) - pMod->SetChanged(); + mpModel->SetChanged(); } @@ -348,7 +348,7 @@ void SdrGlueEditView::ImpTransformMarkedGluePoints(PGlueTrFunc pTrFunc, const vo } } } - if (nMarkCount!=0) pMod->SetChanged(); + if (nMarkCount!=0) mpModel->SetChanged(); } -- cgit