diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-10-21 08:56:06 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-10-21 08:56:29 +0200 |
commit | 43327878920f424f8bac1114bee51c54609796c5 (patch) | |
tree | 7e1080d97a090ab70bb1054ad17c3601d60bbb0c /svx/source/svdraw/svdedtv2.cxx | |
parent | 42a05b4b2aa980cc8443813e6ab903034f9f4dbc (diff) |
nShearWink -> nShearAngle
Change-Id: I122f16783db4025b9335ed82a12f051516d98d4c
Diffstat (limited to 'svx/source/svdraw/svdedtv2.cxx')
-rw-r--r-- | svx/source/svdraw/svdedtv2.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdedtv2.cxx b/svx/source/svdraw/svdedtv2.cxx index 32d23c84aa89..5ff10660e2c1 100644 --- a/svx/source/svdraw/svdedtv2.cxx +++ b/svx/source/svdraw/svdedtv2.cxx @@ -2032,7 +2032,7 @@ void SdrEditView::DoImportMarkedMtf(SvdProgressInfo *pProgrInfo) GeoStat aGeoStat(pGraf ? pGraf->GetGeoStat() : pOle2->GetGeoStat()); size_t nObj=nInsPos; - if(aGeoStat.nShearWink) + if(aGeoStat.nShearAngle) { aGeoStat.RecalcTan(); } @@ -2051,9 +2051,9 @@ void SdrEditView::DoImportMarkedMtf(SvdProgressInfo *pProgrInfo) SdrObject* pCandidate = pOL->GetObj(nObj); // apply original transformation - if(aGeoStat.nShearWink) + if(aGeoStat.nShearAngle) { - pCandidate->NbcShear(aLogicRect.TopLeft(), aGeoStat.nShearWink, aGeoStat.nTan, false); + pCandidate->NbcShear(aLogicRect.TopLeft(), aGeoStat.nShearAngle, aGeoStat.nTan, false); } if(aGeoStat.nRotationAngle) |