diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-01-15 12:46:15 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-01-15 13:56:05 +0100 |
commit | 6583f5d6b2120d1602c8a55c4e8dcc2b83503862 (patch) | |
tree | 7f174daa59eadb56cbbbf96d677978e8d64de74f /sc | |
parent | 71296fd27dd9e3e5609b4fd41f3842673231a3ad (diff) |
loplugin:unnecessaryvirtual
Change-Id: I14ee125874b6f0f1ff5406a3eafea0b19df1a7f2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162082
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/patattr.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/patattr.hxx b/sc/inc/patattr.hxx index ca2f75818a03..3c790c7637e3 100644 --- a/sc/inc/patattr.hxx +++ b/sc/inc/patattr.hxx @@ -125,7 +125,7 @@ public: ScPatternAttr(const ScPatternAttr& rPatternAttr); ~ScPatternAttr(); - virtual bool operator==(const ScPatternAttr& rCmp) const; + bool operator==(const ScPatternAttr& rCmp) const; // version that allows nullptrs static bool areSame(const ScPatternAttr* pItem1, const ScPatternAttr* pItem2); |