summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-20 10:34:01 +0200
committerNoel Grandin <noel@peralex.com>2016-04-21 08:32:47 +0200
commit5abc669599001bf888b97c4d3c2715e1fb7523b9 (patch)
tree2407c6fc040a795e6ffc69de02ba940285c04c7f /slideshow
parent5bb308a9ad16f6002486a60e4a753693818580b6 (diff)
new plugin stylepolice
check for local variables which follow our member field naming convention, which is highly confusing Change-Id: Idacedf7145d09843e96a584237b385f7662eea10
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/shapes/viewappletshape.cxx8
1 files changed, 4 insertions, 4 deletions
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; i<nNumPropEntries; ++i )
{
aPropName = OUString::createFromAscii( pPropCopyTable[i] );
- mxViewerPropSet->setPropertyValue( aPropName,
- xShapePropSet->getPropertyValue(
- aPropName ));
+ xViewerPropSet->setPropertyValue( aPropName,
+ xShapePropSet->getPropertyValue(
+ aPropName ));
}
}