diff options
author | horchi <vdr@jwendel.de> | 2018-02-16 08:04:37 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2018-02-16 08:04:37 +0100 |
commit | 81a3b0255bbf74bd6d6fe17cef394a4d4f338b09 (patch) | |
tree | 7fa3046670ef31dbbf01eafac50435d07372b968 /service.c | |
parent | 4b7842feee923e0ab599fcfb40138df489682d4a (diff) | |
download | vdr-plugin-epg2vdr-81a3b0255bbf74bd6d6fe17cef394a4d4f338b09.tar.gz vdr-plugin-epg2vdr-81a3b0255bbf74bd6d6fe17cef394a4d4f338b09.tar.bz2 |
2018-02-13 version 1.1.84 (horchi)\n - added: Timer 'type' to timers menu\n\n1.1.84
Diffstat (limited to 'service.c')
-rw-r--r-- | service.c | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -20,6 +20,10 @@ cEpgTimer::cEpgTimer(bool Instant, bool Pause, const cChannel* Channel) vdrRunning = no; stateInfo = 0; local = yes; + type = ttRecord; + action = '-'; + createTime = 0; + modTime = 0; } cEpgTimer::~cEpgTimer() @@ -39,11 +43,6 @@ void cEpgTimer::setState(char s, const char* info) stateInfo = strdup(info); } -void cEpgTimer::setAction(char a) -{ - action = a; -} - void cEpgTimer::setVdr(const char* name, const char* uuid, int running) { local = yes; // the default |