summaryrefslogtreecommitdiff
path: root/svgio/source/svgreader/svgcirclenode.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-10-19 12:21:42 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-10-20 06:14:11 +0000
commit58072c5a7f409cd500ecdc4e81a8f536aa3dda59 (patch)
tree124ea6233c190f9d820b35f79663a585963c2538 /svgio/source/svgreader/svgcirclenode.cxx
parent40fc2c1a0d2ebdf47131651045107c9d5abb850d (diff)
loplugin:expandablemethodds in svgio
Change-Id: Iac2aa6dae56d96819589d198be5875ecfe14f26f Reviewed-on: https://gerrit.libreoffice.org/30056 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svgio/source/svgreader/svgcirclenode.cxx')
-rw-r--r--svgio/source/svgreader/svgcirclenode.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svgio/source/svgreader/svgcirclenode.cxx b/svgio/source/svgreader/svgcirclenode.cxx
index 2bbbffb7d7f4..d950632286bf 100644
--- a/svgio/source/svgreader/svgcirclenode.cxx
+++ b/svgio/source/svgreader/svgcirclenode.cxx
@@ -69,7 +69,7 @@ namespace svgio
if(readSingleNumber(aContent, aNum))
{
- setCx(aNum);
+ maCx = aNum;
}
break;
}
@@ -79,7 +79,7 @@ namespace svgio
if(readSingleNumber(aContent, aNum))
{
- setCy(aNum);
+ maCy = aNum;
}
break;
}
@@ -91,7 +91,7 @@ namespace svgio
{
if(aNum.isPositive())
{
- setR(aNum);
+ maR = aNum;
}
}
break;