summaryrefslogtreecommitdiff
path: root/vcl/source/app/timer.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-17 16:17:45 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-20 21:54:00 +0200
commitfec35bf15da6f226ee90bc19e538ee36cc47a172 (patch)
tree9781f3da1a3dc966ef7033091f34ee4b3cc1699f /vcl/source/app/timer.cxx
parentfb74f7b6631d0c01de9919dfe77894588dea1c45 (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 'vcl/source/app/timer.cxx')
-rw-r--r--vcl/source/app/timer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/timer.cxx b/vcl/source/app/timer.cxx
index 262c935522c6..6b1a9c790ac3 100644
--- a/vcl/source/app/timer.cxx
+++ b/vcl/source/app/timer.cxx
@@ -29,7 +29,7 @@ void Timer::SetDeletionFlags()
Task::SetDeletionFlags();
}
-sal_uInt64 Timer::UpdateMinPeriod( sal_uInt64, sal_uInt64 nTimeNow ) const
+sal_uInt64 Timer::UpdateMinPeriod( sal_uInt64 nTimeNow ) const
{
sal_uInt64 nWakeupTime = GetSchedulerData()->mnUpdateTime + mnTimeout;
return ( nWakeupTime <= nTimeNow )