diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-06-18 12:30:40 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-29 12:43:37 +0200 |
commit | 1820fcbbc38e82daf43ebe759200050ce05b3fe1 (patch) | |
tree | f5a494e6a437971ef7b9ae003547d4b156bb8b13 /svgio | |
parent | 66889d5219cec22bd0e654e5a812e90cdd04e59d (diff) |
constmethod for accessor-type methods
Apply the constmethod plugin, but only to accessor-type methods, e.g.
IsFoo(), GetBar(), etc, where we can be sure of that
constifying is a reasonable thing to do.
Change-Id: Ibc97f5f359a0992dd1ce2d66f0189f8a0a43d98a
Reviewed-on: https://gerrit.libreoffice.org/74269
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svgio')
-rw-r--r-- | svgio/inc/svgvisitor.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svgio/inc/svgvisitor.hxx b/svgio/inc/svgvisitor.hxx index 46adbfb22924..c3265d67b960 100644 --- a/svgio/inc/svgvisitor.hxx +++ b/svgio/inc/svgvisitor.hxx @@ -31,7 +31,7 @@ public: void visit(svgio::svgreader::SvgNode const& rNode) override; void goToChildren(svgio::svgreader::SvgNode const& rNode); - std::shared_ptr<gfx::DrawRoot> const& getDrawRoot() { return mpDrawRoot; } + std::shared_ptr<gfx::DrawRoot> const& getDrawRoot() const { return mpDrawRoot; } }; } } |