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:
2014-09-30 09:04:03 +02:00
parent bd97f0dbaf
commit e1406d1077

View File

@@ -42,7 +42,8 @@ CComponentsTimer::CComponentsTimer( const int& interval)
tm_interval = interval;
sl = sigc::mem_fun(*this, &CComponentsTimer::stopTimer);
startTimer();
if (interval > 0)
startTimer();
}
CComponentsTimer::~CComponentsTimer()