From 998d30b6c96aa4b05bcc1360d36791af81c9924c Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Thu, 19 Feb 2015 09:01:04 +0100 Subject: [PATCH] svx: nViewAnz -> nViewCount Change-Id: I76e7f2b29c6583c32a3c2b49f3365688f8f81bce --- svx/source/svdraw/svdedxv.cxx | 6 +++--- 1 file 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);