diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-08 11:01:57 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-09 07:27:39 +0100 |
commit | c40d9ecd912a777ee25c6da6fbd2564b0d43a9b9 (patch) | |
tree | 5128962412b346ff9d2bdb79993838ce5072b2a2 /oox | |
parent | afc96d263959d10e457b54a574f0829d20e99df4 (diff) |
loplugin:unnecessaryvirtual
Change-Id: I5696c853daa16c9e55ff046d67102ba3042bfea8
Reviewed-on: https://gerrit.libreoffice.org/44459
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/diagram/diagramlayoutatoms.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/diagram/diagramlayoutatoms.hxx b/oox/source/drawingml/diagram/diagramlayoutatoms.hxx index 6e5841acac93..5ab34b042c86 100644 --- a/oox/source/drawingml/diagram/diagramlayoutatoms.hxx +++ b/oox/source/drawingml/diagram/diagramlayoutatoms.hxx @@ -106,7 +106,7 @@ public: const OUString& getName() const { return msName; } - virtual void addChild( const LayoutAtomPtr & pNode ) + void addChild( const LayoutAtomPtr & pNode ) { mpChildNodes.push_back( pNode ); } virtual const std::vector<LayoutAtomPtr>& getChildren() const { return mpChildNodes; } |