summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdfmtf.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-11-04 14:45:00 +0200
committerNoel Grandin <noel@peralex.com>2014-11-04 14:45:58 +0200
commita3e2b884f33435eef369ce8cb8eee4bdc5db95af (patch)
tree849073519a8722bdcb3897787a9872e73ed0d227 /svx/source/svdraw/svdfmtf.cxx
parentd1974ddf3a84d2a4a3082920f812857c85218fc2 (diff)
rename nWink->nAngle
Change-Id: I3a4cec65307c517684d4f8a291ca73b6a212a857
Diffstat (limited to 'svx/source/svdraw/svdfmtf.cxx')
-rw-r--r--svx/source/svdraw/svdfmtf.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/svdraw/svdfmtf.cxx b/svx/source/svdraw/svdfmtf.cxx
index 4d4292367cb0..a457b2271ed3 100644
--- a/svx/source/svdraw/svdfmtf.cxx
+++ b/svx/source/svdraw/svdfmtf.cxx
@@ -1040,14 +1040,14 @@ void ImpSdrGDIMetaFileImport::ImportText( const Point& rPos, const OUString& rSt
aAttr.Put(XFillColorItem(OUString(), aFnt.GetFillColor()));
pText->SetMergedItemSet(aAttr);
}
- sal_uInt32 nWink = aFnt.GetOrientation();
- if ( nWink )
+ sal_uInt32 nAngle = aFnt.GetOrientation();
+ if ( nAngle )
{
- nWink*=10;
- double a=nWink*nPi180;
+ nAngle*=10;
+ double a=nAngle*nPi180;
double nSin=sin(a);
double nCos=cos(a);
- pText->NbcRotate(aPos,nWink,nSin,nCos);
+ pText->NbcRotate(aPos,nAngle,nSin,nCos);
}
InsertObj( pText, false );
}