aboutsummaryrefslogtreecommitdiffstats
path: root/include/timer.h
diff options
context:
space:
mode:
authorGravatar Attila Molnar2014-07-10 12:17:55 +0200
committerGravatar Attila Molnar2014-07-10 12:17:55 +0200
commitacccaa39641500b8a691db4136e6571102a438ed (patch)
tree5faed16f0fc7ac11566d6df19561abd3c3ad8c43 /include/timer.h
parentMove the definition of Timer::Timer() into the source file from the header (diff)
Remove current time parameter of the Timer constructor
Diffstat (limited to 'include/timer.h')
-rw-r--r--include/timer.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/timer.h b/include/timer.h
index 1787da7ba..2ac0517b8 100644
--- a/include/timer.h
+++ b/include/timer.h
@@ -50,10 +50,9 @@ class CoreExport Timer
public:
/** Default constructor, initializes the triggering time
* @param secs_from_now The number of seconds from now to trigger the timer
- * @param now The time now
* @param repeating Repeat this timer every secs_from_now seconds if set to true
*/
- Timer(unsigned int secs_from_now, time_t now, bool repeating = false);
+ Timer(unsigned int secs_from_now, bool repeating = false);
/** Default destructor, removes the timer from the timer manager
*/