summaryrefslogtreecommitdiff
path: root/svgio/source/svgreader/svgusenode.cxx
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 /svgio/source/svgreader/svgusenode.cxx
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 'svgio/source/svgreader/svgusenode.cxx')
-rw-r--r--svgio/source/svgreader/svgusenode.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svgio/source/svgreader/svgusenode.cxx b/svgio/source/svgreader/svgusenode.cxx
index 826aed2729f4..84f4bbe75785 100644
--- a/svgio/source/svgreader/svgusenode.cxx
+++ b/svgio/source/svgreader/svgusenode.cxx
@@ -141,9 +141,9 @@ namespace svgio
void SvgUseNode::decomposeSvgNode(drawinglayer::primitive2d::Primitive2DContainer& rTarget, bool /*bReferenced*/) const
{
// try to access link to content
- const SvgNode* mpXLink = getDocument().findSvgNodeById(maXLink);
+ const SvgNode* pXLink = getDocument().findSvgNodeById(maXLink);
- if(mpXLink && Display_none != mpXLink->getDisplay())
+ if(pXLink && Display_none != pXLink->getDisplay())
{
// decompose children
drawinglayer::primitive2d::Primitive2DContainer aNewTarget;
@@ -151,9 +151,9 @@ namespace svgio
// todo: in case mpXLink is a SVGTokenSvg or SVGTokenSymbol the
// SVG docs want the getWidth() and getHeight() from this node
// to be valid for the subtree.
- const_cast< SvgNode* >(mpXLink)->setAlternativeParent(this);
- mpXLink->decomposeSvgNode(aNewTarget, true);
- const_cast< SvgNode* >(mpXLink)->setAlternativeParent();
+ const_cast< SvgNode* >(pXLink)->setAlternativeParent(this);
+ pXLink->decomposeSvgNode(aNewTarget, true);
+ const_cast< SvgNode* >(pXLink)->setAlternativeParent();
if(!aNewTarget.empty())
{