From 33b150bbd636ab23ebf50a5301034f3a551f3793 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 3 Aug 2017 14:42:37 +0200 Subject: rename nPgAnz->nPgCount Change-Id: I4cbc74ed4488c06feaa8b8ab62496fac77ab3aa6 Reviewed-on: https://gerrit.libreoffice.org/40739 Tested-by: Jenkins Reviewed-by: Noel Grandin --- svx/source/svdraw/svdedtv.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'svx/source/svdraw/svdedtv.cxx') diff --git a/svx/source/svdraw/svdedtv.cxx b/svx/source/svdraw/svdedtv.cxx index 55d7d31fa64f..7e41af8cf798 100644 --- a/svx/source/svdraw/svdedtv.cxx +++ b/svx/source/svdraw/svdedtv.cxx @@ -207,9 +207,9 @@ void SdrEditView::DeleteLayer(const OUString& rName) for(sal_uInt16 nPageKind(0); nPageKind < 2; nPageKind++) { // MasterPages and DrawPages - sal_uInt16 nPgAnz(bMaPg ? mpModel->GetMasterPageCount() : mpModel->GetPageCount()); + sal_uInt16 nPgCount(bMaPg ? mpModel->GetMasterPageCount() : mpModel->GetPageCount()); - for(sal_uInt16 nPgNum(0); nPgNum < nPgAnz; nPgNum++) + for(sal_uInt16 nPgNum(0); nPgNum < nPgCount; nPgNum++) { // over all pages SdrPage* pPage = (bMaPg) ? mpModel->GetMasterPage(nPgNum) : mpModel->GetPage(nPgNum); -- cgit