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 --- slideshow/source/engine/shapes/viewappletshape.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'slideshow') diff --git a/slideshow/source/engine/shapes/viewappletshape.cxx b/slideshow/source/engine/shapes/viewappletshape.cxx index 60f1d5daf77d..2b1ec969c6ae 100644 --- a/slideshow/source/engine/shapes/viewappletshape.cxx +++ b/slideshow/source/engine/shapes/viewappletshape.cxx @@ -83,7 +83,7 @@ namespace slideshow uno::Reference< beans::XPropertySet > xShapePropSet( rxShape, uno::UNO_QUERY_THROW ); - uno::Reference< beans::XPropertySet > mxViewerPropSet( mxViewer, + uno::Reference< beans::XPropertySet > xViewerPropSet( mxViewer, uno::UNO_QUERY_THROW ); // copy shape properties to applet viewer @@ -91,9 +91,9 @@ namespace slideshow for( sal_Size i=0; isetPropertyValue( aPropName, - xShapePropSet->getPropertyValue( - aPropName )); + xViewerPropSet->setPropertyValue( aPropName, + xShapePropSet->getPropertyValue( + aPropName )); } } -- cgit