diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2023-07-10 08:20:14 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2023-07-10 16:12:42 +0200 |
commit | b26ddd42b434c84e5f8c939c2903fc7a0f79285f (patch) | |
tree | 51534931b87a4bc88fd0b79caf1abe9ce9977a6e /svx/source/tbxctrls | |
parent | 6ed4c4a1b008e7bd4917d9cca255c862fbcd08aa (diff) |
svx: prefix members of GeoStat
See tdf#94879 for motivation.
Change-Id: Id8d116bfa375f7dd30ca8dcdec0ee02df8105030
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154234
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'svx/source/tbxctrls')
-rw-r--r-- | svx/source/tbxctrls/grafctrl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/tbxctrls/grafctrl.cxx b/svx/source/tbxctrls/grafctrl.cxx index 56669429c727..cd2533538466 100644 --- a/svx/source/tbxctrls/grafctrl.cxx +++ b/svx/source/tbxctrls/grafctrl.cxx @@ -689,19 +689,19 @@ void SvxGrafAttrHelper::ExecuteGrafAttr( SfxRequest& rReq, SdrView& rView ) // #106181# rotate snap rect before setting it const GeoStat& aGeo = pObj->GetGeoStat(); - if (aGeo.nRotationAngle || aGeo.nShearAngle) + if (aGeo.m_nRotationAngle || aGeo.m_nShearAngle) { tools::Polygon aPol(aNewRect); // also transform origin offset - if (aGeo.nShearAngle) + if (aGeo.m_nShearAngle) { ShearPoly(aPol, aNewRect.TopLeft(), aGeo.mfTanShearAngle); ShearPoint(aOffset, Point(0,0), aGeo.mfTanShearAngle); } - if (aGeo.nRotationAngle) + if (aGeo.m_nRotationAngle) { RotatePoly(aPol, aNewRect.TopLeft(), |