diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-17 16:17:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-20 21:54:00 +0200 |
commit | fec35bf15da6f226ee90bc19e538ee36cc47a172 (patch) | |
tree | 9781f3da1a3dc966ef7033091f34ee4b3cc1699f /sw | |
parent | fb74f7b6631d0c01de9919dfe77894588dea1c45 (diff) |
loplugin:virtualdead unused param in Task::UpdateMinPeriod
Change-Id: Ie24f56fed811b3b317d6c20e15289e7cecfb738d
Reviewed-on: https://gerrit.libreoffice.org/81157
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/SwDocIdle.hxx | 3 | ||||
-rw-r--r-- | sw/source/core/doc/SwDocIdle.cxx | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/sw/inc/SwDocIdle.hxx b/sw/inc/SwDocIdle.hxx index 38072f8f3cdf..708dc1c1cb78 100644 --- a/sw/inc/SwDocIdle.hxx +++ b/sw/inc/SwDocIdle.hxx @@ -39,8 +39,7 @@ private: SwDoc &m_rDoc; protected: - virtual sal_uInt64 UpdateMinPeriod( - sal_uInt64 nMinPeriod, sal_uInt64 nTimeNow ) const override; + virtual sal_uInt64 UpdateMinPeriod( sal_uInt64 nTimeNow ) const override; public: SwDocIdle( SwDoc &doc ); diff --git a/sw/source/core/doc/SwDocIdle.cxx b/sw/source/core/doc/SwDocIdle.cxx index d2bf04f408dc..24f51c90e908 100644 --- a/sw/source/core/doc/SwDocIdle.cxx +++ b/sw/source/core/doc/SwDocIdle.cxx @@ -30,7 +30,7 @@ namespace sw { -sal_uInt64 SwDocIdle::UpdateMinPeriod( sal_uInt64 /* nMinPeriod */, sal_uInt64 /* nTimeNow */ ) const +sal_uInt64 SwDocIdle::UpdateMinPeriod( sal_uInt64 /* nTimeNow */ ) const { bool bReadyForSchedule = true; |