From 5abc669599001bf888b97c4d3c2715e1fb7523b9 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 20 Apr 2016 10:34:01 +0200 Subject: new plugin stylepolice check for local variables which follow our member field naming convention, which is highly confusing Change-Id: Idacedf7145d09843e96a584237b385f7662eea10 --- sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx') diff --git a/sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx b/sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx index 28c606216431..0af20497d857 100644 --- a/sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx +++ b/sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx @@ -192,13 +192,13 @@ sal_Int32 SAL_CALL { ThrowIfDisposed (); - long mpChildCount = AccessibleDocumentViewBase::getAccessibleChildCount(); + long nChildCount = AccessibleDocumentViewBase::getAccessibleChildCount(); // Forward request to children manager. if (mpChildrenManager != nullptr) - mpChildCount += mpChildrenManager->GetChildCount (); + nChildCount += mpChildrenManager->GetChildCount(); - return mpChildCount; + return nChildCount; } uno::Reference SAL_CALL @@ -363,10 +363,10 @@ void SAL_CALL css::uno::Reference< drawing::XDrawPage > xSlide; // MT IA2: Not used... // sal_Int32 currentPageIndex = xSlideshow->getCurrentPageIndex(); - css::uno::Reference< css::presentation::XSlideShowController > mpSlideController = xSlideshow->getController(); - if( mpSlideController.is() ) + css::uno::Reference< css::presentation::XSlideShowController > xSlideController = xSlideshow->getController(); + if( xSlideController.is() ) { - xSlide = mpSlideController->getCurrentSlide(); + xSlide = xSlideController->getCurrentSlide(); if (xSlide.is()) { mpChildrenManager->SetShapeList (uno::Reference ( -- cgit