diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-03-29 10:58:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-03-29 18:15:16 +0200 |
commit | 8e27afa534f5e3a0c610b36e7ed4d392b532b49d (patch) | |
tree | 416a0f26b455a928087df25341312eff4febe2c5 /basctl/source | |
parent | ed316832e9e9028444cbb587ce644d7acaacf1e7 (diff) |
loplugin:unnecessaryvirtual
Change-Id: Ic044a6e4568e707022d87bc5712205fbdf084ba2
Reviewed-on: https://gerrit.libreoffice.org/52067
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basctl/source')
-rw-r--r-- | basctl/source/basicide/baside2.hxx | 2 | ||||
-rw-r--r-- | basctl/source/inc/baside3.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/basctl/source/basicide/baside2.hxx b/basctl/source/basicide/baside2.hxx index bff95c0ef7cc..5e19ef184ffc 100644 --- a/basctl/source/basicide/baside2.hxx +++ b/basctl/source/basicide/baside2.hxx @@ -369,7 +369,7 @@ public: BasicStatus& GetBasicStatus() { return m_aStatus; } virtual bool IsModified () override; - virtual bool IsPasteAllowed (); + bool IsPasteAllowed (); void ShowCursor( bool bOn ); diff --git a/basctl/source/inc/baside3.hxx b/basctl/source/inc/baside3.hxx index 2b7733e56b15..9c078e608d00 100644 --- a/basctl/source/inc/baside3.hxx +++ b/basctl/source/inc/baside3.hxx @@ -101,7 +101,7 @@ public: virtual void StoreData() override; virtual bool IsModified() override; - virtual bool IsPasteAllowed(); + bool IsPasteAllowed(); virtual svl::IUndoManager* GetUndoManager() override; // return number of pages to be printed |