summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdouno.cxx
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2021-06-15 23:57:58 +0900
committerTomaž Vajngerl <quikee@gmail.com>2021-06-19 11:12:03 +0200
commite6cb7f9ab25bca32dc85aef8ff127e070cd109b6 (patch)
tree04ff219f303759ccb357ddb166882b3ba555d391 /svx/source/svdraw/svdouno.cxx
parent39a3c0bd8007917d42a58d9337b4d06590bcf306 (diff)
svx: prefix member variables for SdrTextObj and others
All classes in svdotext.hxx Change-Id: Ib15deca2a625d8352a2572d9fc3e15188b4e718a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117478 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'svx/source/svdraw/svdouno.cxx')
-rw-r--r--svx/source/svdraw/svdouno.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/svx/source/svdraw/svdouno.cxx b/svx/source/svdraw/svdouno.cxx
index eebe934ddf10..9d16d3a12332 100644
--- a/svx/source/svdraw/svdouno.cxx
+++ b/svx/source/svdraw/svdouno.cxx
@@ -290,20 +290,20 @@ void SdrUnoObj::NbcResize(const Point& rRef, const Fraction& xFact, const Fracti
{
SdrRectObj::NbcResize(rRef,xFact,yFact);
- if (aGeo.nShearAngle==0_deg100 && aGeo.nRotationAngle==0_deg100)
+ if (maGeo.nShearAngle==0_deg100 && maGeo.nRotationAngle==0_deg100)
return;
// small correctors
- if (aGeo.nRotationAngle>=9000_deg100 && aGeo.nRotationAngle<27000_deg100)
+ if (maGeo.nRotationAngle>=9000_deg100 && maGeo.nRotationAngle<27000_deg100)
{
maRect.Move(maRect.Left()-maRect.Right(),maRect.Top()-maRect.Bottom());
}
- aGeo.nRotationAngle = 0_deg100;
- aGeo.nShearAngle = 0_deg100;
- aGeo.mfSinRotationAngle = 0.0;
- aGeo.mfCosRotationAngle = 1.0;
- aGeo.mfTanShearAngle = 0.0;
+ maGeo.nRotationAngle = 0_deg100;
+ maGeo.nShearAngle = 0_deg100;
+ maGeo.mfSinRotationAngle = 0.0;
+ maGeo.mfCosRotationAngle = 1.0;
+ maGeo.mfTanShearAngle = 0.0;
SetRectsDirty();
}