diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2023-09-04 08:29:26 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2023-09-04 16:27:30 +0200 |
commit | 9bb4fa71c230a34a07ea9b7c4e4f13f4d3f7b5fe (patch) | |
tree | 7c7cef45186f90e7e7fe98b967de82ab857c3d49 /include | |
parent | 2ac7d339a97efa638124c2862551e0876487833b (diff) |
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 <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/svdglue.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/svx/svdglue.hxx b/include/svx/svdglue.hxx index acdebd0bf4ea..234ecf08cdd0 100644 --- a/include/svx/svdglue.hxx +++ b/include/svx/svdglue.hxx @@ -182,7 +182,7 @@ public: class SVXCORE_DLLPUBLIC SdrGluePointList { - std::vector<SdrGluePoint> aList; + std::vector<SdrGluePoint> m_aList; public: SdrGluePointList() {}; SdrGluePointList(const SdrGluePointList& rSrcList) @@ -193,22 +193,22 @@ public: SdrGluePointList& operator=(const SdrGluePointList& rSrcList); sal_uInt16 GetCount() const { - return sal_uInt16(aList.size()); + return sal_uInt16(m_aList.size()); } // At insert, the object (GluePoint) automatically gets an ID assigned. // Return value is the index of the new GluePoint in the list. sal_uInt16 Insert(const SdrGluePoint& rGP); void Delete(sal_uInt16 nPos) { - aList.erase(aList.begin() + nPos); + m_aList.erase(m_aList.begin() + nPos); } SdrGluePoint& operator[](sal_uInt16 nPos) { - return aList[nPos]; + return m_aList[nPos]; } const SdrGluePoint& operator[](sal_uInt16 nPos) const { - return aList[nPos]; + return m_aList[nPos]; } sal_uInt16 FindGluePoint(sal_uInt16 nId) const; sal_uInt16 HitTest(const Point& rPnt, const OutputDevice& rOut, const SdrObject* pObj) const; |