diff options
author | Noel <noel.grandin@collabora.co.uk> | 2021-03-24 14:55:25 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-03-24 20:01:06 +0100 |
commit | a7cf7da8d21d3d4d54bd532f07fc0c4712239dbb (patch) | |
tree | dd3c99ad92370677ec2ab318e7034947a5651138 /sfx2/source/devtools | |
parent | 3b9866ee35fe3567e850f0f1a888d96e60b6fbfa (diff) |
loplugin:unnecessaryvirtual
Change-Id: Ic414b72299b5c5c19e5b37156ac6dec4bedadf65
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113038
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/devtools')
-rw-r--r-- | sfx2/source/devtools/DocumentModelTreeHandler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/devtools/DocumentModelTreeHandler.cxx b/sfx2/source/devtools/DocumentModelTreeHandler.cxx index e099d3d9cc9d..9b3dbb917812 100644 --- a/sfx2/source/devtools/DocumentModelTreeHandler.cxx +++ b/sfx2/source/devtools/DocumentModelTreeHandler.cxx @@ -74,7 +74,7 @@ public: virtual ~DocumentModelTreeEntry() {} /// the node string shown in the tree view - virtual OUString& getString() { return maString; } + OUString& getString() { return maString; } /// should show the expander for the tree view node virtual bool shouldShowExpander() { return false; } |