mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-01 18:01:06 +02:00
Merge branch 'master' of https://github.com/tuxbox-neutrino/gui-neutrino into ni/tuxbox
Conflicts:
configure.ac
data/locale/deutsch.locale
data/locale/english.locale
src/gui/info_menue.cpp
src/gui/widget/menue.cpp
src/nhttpd/yconfig.h
src/system/helpers.h
Origin commit data
------------------
Commit: 9152c228ed
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-09-14 (Thu, 14 Sep 2017)
This commit is contained in:
@@ -43,11 +43,11 @@ CComponentsTimer::CComponentsTimer(const int& interval, bool is_nano)
|
||||
tm_thread = 0;
|
||||
tm_interval = interval;
|
||||
tm_enable_nano = is_nano;
|
||||
|
||||
tm_enable = false;
|
||||
sl_stop_timer = sigc::mem_fun(*this, &CComponentsTimer::stopTimer);
|
||||
|
||||
if (interval > 0)
|
||||
startTimer();
|
||||
tm_enable = startTimer();
|
||||
}
|
||||
|
||||
CComponentsTimer::~CComponentsTimer()
|
||||
@@ -132,12 +132,11 @@ void CComponentsTimer::stopThread()
|
||||
|
||||
bool CComponentsTimer::startTimer()
|
||||
{
|
||||
tm_enable = true;
|
||||
initThread();
|
||||
if(tm_thread)
|
||||
return true;
|
||||
tm_enable = true;
|
||||
|
||||
return false;
|
||||
return tm_enable;
|
||||
}
|
||||
|
||||
bool CComponentsTimer::stopTimer()
|
||||
|
Reference in New Issue
Block a user