From b26ddd42b434c84e5f8c939c2903fc7a0f79285f Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Mon, 10 Jul 2023 08:20:14 +0200 Subject: 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 Tested-by: Jenkins --- include/svx/svdtrans.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include') 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(); }; -- cgit