summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-02-19 09:01:04 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-02-19 09:01:41 +0100
commit998d30b6c96aa4b05bcc1360d36791af81c9924c (patch)
tree6b246ee8dbc4b457bdc7a1b9d58b5f30c87439ef /svx
parentcb3518f331a99ff9a3187286e9e2b695df1c0292 (diff)
svx: nViewAnz -> nViewCount
Change-Id: I76e7f2b29c6583c32a3c2b49f3365688f8f81bce
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdedxv.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdedxv.cxx b/svx/source/svdraw/svdedxv.cxx
index 67d9514e054d..f8b234b93064 100644
--- a/svx/source/svdraw/svdedxv.cxx
+++ b/svx/source/svdraw/svdedxv.cxx
@@ -297,14 +297,14 @@ void SdrObjEditView::TextEditDrawing(SdrPaintWindow& rPaintWindow) const
if(pActiveOutliner)
{
- const sal_uInt32 nViewAnz(pActiveOutliner->GetViewCount());
+ const sal_uInt32 nViewCount(pActiveOutliner->GetViewCount());
- if(nViewAnz)
+ if(nViewCount)
{
const vcl::Region& rRedrawRegion = rPaintWindow.GetRedrawRegion();
const Rectangle aCheckRect(rRedrawRegion.GetBoundRect());
- for(sal_uInt32 i(0); i < nViewAnz; i++)
+ for(sal_uInt32 i(0); i < nViewCount; i++)
{
OutlinerView* pOLV = pActiveOutliner->GetView(i);