summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2023-07-10 08:20:14 +0200
committerMiklos Vajna <vmiklos@collabora.com>2023-07-10 16:12:42 +0200
commitb26ddd42b434c84e5f8c939c2903fc7a0f79285f (patch)
tree51534931b87a4bc88fd0b79caf1abe9ce9977a6e /include
parent6ed4c4a1b008e7bd4917d9cca255c862fbcd08aa (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 'include')
-rw-r--r--include/svx/svdtrans.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/svdtrans.hxx b/include/svx/svdtrans.hxx
index 9f1becaabb32..aa8992a34bd3 100644
--- a/include/svx/svdtrans.hxx
+++ b/include/svx/svdtrans.hxx
@@ -200,13 +200,13 @@ tools::Long GetLen(const Point& rPnt);
class GeoStat { // Geometric state for a rect
public:
- Degree100 nRotationAngle;
- Degree100 nShearAngle;
+ Degree100 m_nRotationAngle;
+ Degree100 m_nShearAngle;
double mfTanShearAngle; // tan(nShearAngle)
double mfSinRotationAngle; // sin(nRotationAngle)
double mfCosRotationAngle; // cos(nRotationAngle)
- GeoStat(): nRotationAngle(0),nShearAngle(0),mfTanShearAngle(0.0),mfSinRotationAngle(0.0),mfCosRotationAngle(1.0) {}
+ GeoStat(): m_nRotationAngle(0),m_nShearAngle(0),mfTanShearAngle(0.0),mfSinRotationAngle(0.0),mfCosRotationAngle(1.0) {}
void RecalcSinCos();
void RecalcTan();
};