diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-19 12:21:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-20 06:14:11 +0000 |
commit | 58072c5a7f409cd500ecdc4e81a8f536aa3dda59 (patch) | |
tree | 124ea6233c190f9d820b35f79663a585963c2538 /svgio/inc/svgsvgnode.hxx | |
parent | 40fc2c1a0d2ebdf47131651045107c9d5abb850d (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/inc/svgsvgnode.hxx')
-rw-r--r-- | svgio/inc/svgsvgnode.hxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/svgio/inc/svgsvgnode.hxx b/svgio/inc/svgsvgnode.hxx index a8276dabc476..10204ee3c975 100644 --- a/svgio/inc/svgsvgnode.hxx +++ b/svgio/inc/svgsvgnode.hxx @@ -75,26 +75,18 @@ namespace svgio /// SvgAspectRatio content const SvgAspectRatio& getSvgAspectRatio() const { return maSvgAspectRatio; } - void setSvgAspectRatio(const SvgAspectRatio& rSvgAspectRatio) { maSvgAspectRatio = rSvgAspectRatio; } /// x content const SvgNumber& getX() const { return maX; } - void setX(const SvgNumber& rX) { maX = rX; } /// y content const SvgNumber& getY() const { return maY; } - void setY(const SvgNumber& rY) { maY = rY; } /// width content const SvgNumber& getWidth() const { return maWidth; } - void setWidth(const SvgNumber& rWidth) { maWidth = rWidth; } /// height content const SvgNumber& getHeight() const { return maHeight; } - void setHeight(const SvgNumber& rHeight) { maHeight = rHeight; } - - /// version content - void setVersion(const SvgNumber& rVersion) { maVersion = rVersion; } }; } // end of namespace svgreader } // end of namespace svgio |