mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-02 10:21:04 +02:00
CComponentsTimer: start timer only if interval > 0
Origin commit data
------------------
Commit: 8aa2b6a5ab
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-09-30 (Tue, 30 Sep 2014)
This commit is contained in:
@@ -42,7 +42,8 @@ CComponentsTimer::CComponentsTimer( const int& interval)
|
|||||||
tm_interval = interval;
|
tm_interval = interval;
|
||||||
|
|
||||||
sl = sigc::mem_fun(*this, &CComponentsTimer::stopTimer);
|
sl = sigc::mem_fun(*this, &CComponentsTimer::stopTimer);
|
||||||
startTimer();
|
if (interval > 0)
|
||||||
|
startTimer();
|
||||||
}
|
}
|
||||||
|
|
||||||
CComponentsTimer::~CComponentsTimer()
|
CComponentsTimer::~CComponentsTimer()
|
||||||
|
Reference in New Issue
Block a user