summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdedtv2.cxx
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 /svx/source/svdraw/svdedtv2.cxx
parent42a05b4b2aa980cc8443813e6ab903034f9f4dbc (diff)
nShearWink -> nShearAngle
Change-Id: I122f16783db4025b9335ed82a12f051516d98d4c
Diffstat (limited to 'svx/source/svdraw/svdedtv2.cxx')
-rw-r--r--svx/source/svdraw/svdedtv2.cxx6
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)