CComponentsTimer: start timer only if interval > 0

Origin commit data
------------------
Branch: ni/coolstream
Commit: 8aa2b6a5ab
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-09-30 (Tue, 30 Sep 2014)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
2014-09-30 09:04:03 +02:00
parent 29657fdc0c
commit ab44dbd3e7

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()