summaryrefslogtreecommitdiffstats
path: root/include/svx/svdtrans.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-10-21 08:56:06 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-10-21 08:56:29 +0200
commit43327878920f424f8bac1114bee51c54609796c5 (patch)
tree7e1080d97a090ab70bb1054ad17c3601d60bbb0c /include/svx/svdtrans.hxx
parentRemove unnecessary jfw_plugin::getVendorNames (diff)
downloadcore-43327878920f424f8bac1114bee51c54609796c5.tar.gz
core-43327878920f424f8bac1114bee51c54609796c5.zip
nShearWink -> nShearAngle
Change-Id: I122f16783db4025b9335ed82a12f051516d98d4c
Diffstat (limited to 'include/svx/svdtrans.hxx')
-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 9790327a9241..ef2aba8a83f4 100644
--- a/include/svx/svdtrans.hxx
+++ b/include/svx/svdtrans.hxx
@@ -198,13 +198,13 @@ long GetLen(const Point& rPnt);
class GeoStat { // Geometrischer Status fuer ein Rect
public:
long nRotationAngle;
- long nShearWink;
- double nTan; // tan(nShearWink)
+ long nShearAngle;
+ double nTan; // tan(nShearAngle)
double nSin; // sin(nRotationAngle)
double nCos; // cos(nRotationAngle)
bool bMirrored; // Horizontal gespiegelt? (ni)
public:
- GeoStat(): nRotationAngle(0),nShearWink(0),nTan(0.0),nSin(0.0),nCos(1.0),bMirrored(false) {}
+ GeoStat(): nRotationAngle(0),nShearAngle(0),nTan(0.0),nSin(0.0),nCos(1.0),bMirrored(false) {}
void RecalcSinCos();
void RecalcTan();
};