summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-01-12 11:03:11 +0200
committerTor Lillqvist <tml@collabora.com>2016-01-12 11:03:11 +0200
commit7b6fd31c6540a95552d7e5f6a90a97eb72f5d58a (patch)
treea995a58948ab3193bb7485e49283bbd9aed517a8 /vcl
parenteee8f604f6ec3982bdfed2a30c7441d26bfe4a2f (diff)
No need to name unused parameters
Change-Id: I982a67f1e5279aa18131f99f4a8ba5c5c2c005a7
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/app/scheduler.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/source/app/scheduler.cxx b/vcl/source/app/scheduler.cxx
index 4586a7ea7df9..e5121d7a1f59 100644
--- a/vcl/source/app/scheduler.cxx
+++ b/vcl/source/app/scheduler.cxx
@@ -159,10 +159,9 @@ void InitSystemTimer(ImplSVData* pSVData)
}
-void Scheduler::CallbackTaskScheduling(bool ignore)
+void Scheduler::CallbackTaskScheduling(bool)
{
// this function is for the saltimer callback
- (void)ignore;
Scheduler::ProcessTaskScheduling( false );
}