summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdedtv1.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-09-04 09:03:42 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-09-04 09:04:18 +0200
commit2c1019739b1a15971b894b7e382de097894af47c (patch)
tree0b66ad67e96daccfe92492f45edbf2066e81819a /svx/source/svdraw/svdedtv1.cxx
parent24d90b8aa8e49507d02aa87a0b726ec303a27518 (diff)
svx: prefix members of SdrPaintView
'mpModel=pModel' is more readable than 'pMod=pModel1'. Change-Id: I617d85e2c2d4b6b5b0d235cdd3cd9129e276b28d
Diffstat (limited to 'svx/source/svdraw/svdedtv1.cxx')
-rw-r--r--svx/source/svdraw/svdedtv1.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdedtv1.cxx b/svx/source/svdraw/svdedtv1.cxx
index fca61f6534a8..fde16946d509 100644
--- a/svx/source/svdraw/svdedtv1.cxx
+++ b/svx/source/svdraw/svdedtv1.cxx
@@ -910,7 +910,7 @@ void SdrEditView::MergeNotPersistAttrFromMarked(SfxItemSet& rAttr, bool /*bOnlyH
SfxItemSet SdrEditView::GetAttrFromMarked(bool bOnlyHardAttr) const
{
- SfxItemSet aSet(pMod->GetItemPool());
+ SfxItemSet aSet(mpModel->GetItemPool());
MergeAttrFromMarked(aSet,bOnlyHardAttr);
//the EE_FEATURE items should not be set with SetAttrToMarked (see error message there)
//so we do not set them here
@@ -1286,7 +1286,7 @@ bool SdrEditView::SetStyleSheet(SfxStyleSheet* pStyleSheet, bool bDontRemoveHard
SfxItemSet SdrEditView::GetGeoAttrFromMarked() const
{
- SfxItemSet aRetSet(pMod->GetItemPool(), // SID_ATTR_TRANSFORM_... from s:svxids.hrc
+ SfxItemSet aRetSet(mpModel->GetItemPool(), // SID_ATTR_TRANSFORM_... from s:svxids.hrc
SID_ATTR_TRANSFORM_POS_X, SID_ATTR_TRANSFORM_ANGLE,
SID_ATTR_TRANSFORM_PROTECT_POS, SID_ATTR_TRANSFORM_AUTOHEIGHT,
SDRATTR_ECKENRADIUS, SDRATTR_ECKENRADIUS,
@@ -1514,7 +1514,7 @@ void SdrEditView::SetGeoAttrToMarked(const SfxItemSet& rAttr)
bool bShear =false;
bool bSetAttr=false;
- SfxItemSet aSetAttr(pMod->GetItemPool());
+ SfxItemSet aSetAttr(mpModel->GetItemPool());
const SfxPoolItem* pPoolItem=NULL;