diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-01-12 11:03:11 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-01-12 11:03:11 +0200 |
commit | 7b6fd31c6540a95552d7e5f6a90a97eb72f5d58a (patch) | |
tree | a995a58948ab3193bb7485e49283bbd9aed517a8 /vcl | |
parent | eee8f604f6ec3982bdfed2a30c7441d26bfe4a2f (diff) |
No need to name unused parameters
Change-Id: I982a67f1e5279aa18131f99f4a8ba5c5c2c005a7
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/scheduler.cxx | 3 |
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 ); } |