diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-04-17 09:13:11 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-04-17 09:57:42 +0200 |
commit | 7e5980ccf39b54240524f059a65497b766af91cc (patch) | |
tree | cd6b0fc7bdb7ceb6352c295f3d886676bc924337 /svx/source/svdraw/svdotxtr.cxx | |
parent | a7b7c64afc523cfd9ff4e724b3efbec6567fc1c8 (diff) |
svx: nPntAnz -> nPointCount
Change-Id: I2a4c7ef9d33db1c34a4ab338f70f800b30083f4f
Diffstat (limited to 'svx/source/svdraw/svdotxtr.cxx')
-rw-r--r-- | svx/source/svdraw/svdotxtr.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdotxtr.cxx b/svx/source/svdraw/svdotxtr.cxx index a2be884b8a4c..fca3331358c8 100644 --- a/svx/source/svdraw/svdotxtr.cxx +++ b/svx/source/svdraw/svdotxtr.cxx @@ -258,8 +258,8 @@ void SdrTextObj::NbcMirror(const Point& rRef1, const Point& rRef2) } Polygon aPol(Rect2Poly(maRect,aGeo)); sal_uInt16 i; - sal_uInt16 nPntAnz=aPol.GetSize(); - for (i=0; i<nPntAnz; i++) { + sal_uInt16 nPointCount=aPol.GetSize(); + for (i=0; i<nPointCount; i++) { MirrorPoint(aPol[i],rRef1,rRef2); } // turn polygon and move it a little |