From 9bb4fa71c230a34a07ea9b7c4e4f13f4d3f7b5fe Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Mon, 4 Sep 2023 08:29:26 +0200 Subject: svx: prefix members of SdrGluePointList See tdf#94879 for motivation. Change-Id: Ia58a0c5319d51c463db23bae250e6c0c5e7a9741 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156505 Reviewed-by: Miklos Vajna Tested-by: Jenkins --- svx/source/svdraw/svdglue.cxx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'svx/source/svdraw/svdglue.cxx') diff --git a/svx/source/svdraw/svdglue.cxx b/svx/source/svdraw/svdglue.cxx index 471089f3763c..c27fc2e2bde9 100644 --- a/svx/source/svdraw/svdglue.cxx +++ b/svx/source/svdraw/svdglue.cxx @@ -282,7 +282,7 @@ bool SdrGluePoint::IsHit(const Point& rPnt, const OutputDevice& rOut, const SdrO SdrGluePointList& SdrGluePointList::operator=(const SdrGluePointList& rSrcList) { - if (GetCount()!=0) aList.clear(); + if (GetCount()!=0) m_aList.clear(); sal_uInt16 nCount=rSrcList.GetCount(); for (sal_uInt16 i=0; i=nCount,"SdrGluePointList::Insert(): nLastIdnCount; if (nId<=nLastId) { @@ -307,7 +307,7 @@ sal_uInt16 SdrGluePointList::Insert(const SdrGluePoint& rGP) } else { bool bBrk = false; for (sal_uInt16 nNum=0; nNum0) && nRet==SDRGLUEPOINT_NOTFOUND) { nNum--; - const auto& pGP = aList[nNum]; + const auto& pGP = m_aList[nNum]; if (pGP.IsHit(rPnt,rOut,pObj)) nRet = nNum; } @@ -362,13 +362,13 @@ sal_uInt16 SdrGluePointList::HitTest(const Point& rPnt, const OutputDevice& rOut void SdrGluePointList::SetReallyAbsolute(bool bOn, const SdrObject& rObj) { - for (auto& xGP : aList) + for (auto& xGP : m_aList) xGP.SetReallyAbsolute(bOn,rObj); } void SdrGluePointList::Rotate(const Point& rRef, Degree100 nAngle, double sn, double cs, const SdrObject* pObj) { - for (auto& xGP : aList) + for (auto& xGP : m_aList) xGP.Rotate(rRef,nAngle,sn,cs,pObj); } @@ -381,13 +381,13 @@ void SdrGluePointList::Mirror(const Point& rRef1, const Point& rRef2, const SdrO void SdrGluePointList::Mirror(const Point& rRef1, const Point& rRef2, Degree100 nAngle, const SdrObject* pObj) { - for (auto& xGP : aList) + for (auto& xGP : m_aList) xGP.Mirror(rRef1,rRef2,nAngle,pObj); } void SdrGluePointList::Shear(const Point& rRef, double tn, bool bVShear, const SdrObject* pObj) { - for (auto& xGP : aList) + for (auto& xGP : m_aList) xGP.Shear(rRef,tn,bVShear,pObj); } -- cgit