cc_frm_clock.cpp/h: fix incomplete result of isRun() methode

Origin commit data
------------------
Branch: ni/coolstream
Commit: fa73c2784f
Author: Thilo Graf <dbt@novatux.de>
Date: 2018-11-21 (Wed, 21 Nov 2018)


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

------------------
This commit was generated by Migit
This commit is contained in:
2018-11-21 00:00:18 +01:00
committed by vanhofen
parent f962c47426
commit 8621c9532e
2 changed files with 3 additions and 2 deletions

View File

@@ -35,6 +35,7 @@
#include "cc_base.h"
#include "cc_frm.h"
#include "cc_text_screen.h"
#include "cc_timer.h"
//! Sub class of CComponents. Show clock with digits on screen.
/*!
Usable as simple fixed display or as ticking clock.
@@ -152,7 +153,7 @@ class CComponentsFrmClock : public CComponentsForm, public CCTextScreen
virtual bool isBlocked(void) {return !paintClock;}
///returns true, if clock is running
virtual bool isRun() const {return cl_timer ? true : false;};
virtual bool isRun() const {return cl_timer ? cl_timer->isRun() : false;}
///set refresh interval in seconds, default value=1 (=1 sec)
virtual void setClockInterval(const int& seconds){cl_interval = seconds;}