summaryrefslogtreecommitdiff
path: root/svgio/source/svgreader/svgusenode.cxx
diff options
context:
space:
mode:
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())
{