mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-02 02:11:04 +02:00
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:
@@ -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;}
|
||||
|
||||
|
Reference in New Issue
Block a user