From 58072c5a7f409cd500ecdc4e81a8f536aa3dda59 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 19 Oct 2016 12:21:42 +0200 Subject: loplugin:expandablemethodds in svgio Change-Id: Iac2aa6dae56d96819589d198be5875ecfe14f26f Reviewed-on: https://gerrit.libreoffice.org/30056 Tested-by: Jenkins Reviewed-by: Noel Grandin --- svgio/inc/svgrectnode.hxx | 6 ------ 1 file changed, 6 deletions(-) (limited to 'svgio/inc/svgrectnode.hxx') diff --git a/svgio/inc/svgrectnode.hxx b/svgio/inc/svgrectnode.hxx index 3dbf68b0526f..362b2c90b09f 100644 --- a/svgio/inc/svgrectnode.hxx +++ b/svgio/inc/svgrectnode.hxx @@ -54,27 +54,21 @@ namespace svgio /// x content, set if found in current context const SvgNumber& getX() const { return maX; } - void setX(const SvgNumber& rX) { maX = rX; } /// y content, set if found in current context const SvgNumber& getY() const { return maY; } - void setY(const SvgNumber& rY) { maY = rY; } /// width content, set if found in current context const SvgNumber& getWidth() const { return maWidth; } - void setWidth(const SvgNumber& rWidth) { maWidth = rWidth; } /// height content, set if found in current context const SvgNumber& getHeight() const { return maHeight; } - void setHeight(const SvgNumber& rHeight) { maHeight = rHeight; } /// Rx content, set if found in current context const SvgNumber& getRx() const { return maRx; } - void setRx(const SvgNumber& rRx) { maRx = rRx; } /// Ry content, set if found in current context const SvgNumber& getRy() const { return maRy; } - void setRy(const SvgNumber& rRy) { maRy = rRy; } /// transform content, set if found in current context const basegfx::B2DHomMatrix* getTransform() const { return mpaTransform; } -- cgit