summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-07-20 15:18:47 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-07-20 23:03:43 +0200
commit1c584069a86e35b847f398b8bf78dce7428c2f63 (patch)
treeb3c1e0dbdf44e414dded5601063ece5c3ca08714 /sdext
parent346bc3661bfde0c4e000716601a26f91e0bd523f (diff)
loplugin:unnecessaryvirtual
Change-Id: Ida7e1fa4bfaa6734dac26705726043e6b9d9204e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99107 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/presenter/PresenterToolBar.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sdext/source/presenter/PresenterToolBar.cxx b/sdext/source/presenter/PresenterToolBar.cxx
index 4f700339dc5a..ad0f36707c11 100644
--- a/sdext/source/presenter/PresenterToolBar.cxx
+++ b/sdext/source/presenter/PresenterToolBar.cxx
@@ -305,8 +305,8 @@ namespace {
virtual void restart() override;
virtual bool isPaused() override;
virtual void setPauseStatus(const bool pauseStatus) override;
- virtual TimeValue getPauseTimeValue();
- virtual void setPauseTimeValue(const TimeValue pauseTime);
+ TimeValue getPauseTimeValue();
+ void setPauseTimeValue(const TimeValue pauseTime);
private:
TimeValue maStartTimeValue;
TimeValue pauseTimeValue;