summaryrefslogtreecommitdiff
path: root/switchtimer.h
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2019-04-05 11:35:45 +0200
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2019-04-05 13:20:17 +0200
commit9df447454c470dcede29356c7ca4eb9a613f4f8f (patch)
tree2c9ebf0d45c52a3c426feb37047b0db6ed259596 /switchtimer.h
parent8ae5d34bef5bb1602225eed17e1899fc71f6c4a4 (diff)
downloadvdr-plugin-tvguide-9df447454c470dcede29356c7ca4eb9a613f4f8f.tar.gz
vdr-plugin-tvguide-9df447454c470dcede29356c7ca4eb9a613f4f8f.tar.bz2
Add switchMode to setup menu
Diffstat (limited to 'switchtimer.h')
-rw-r--r--switchtimer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/switchtimer.h b/switchtimer.h
index 708a544..70a4096 100644
--- a/switchtimer.h
+++ b/switchtimer.h
@@ -10,7 +10,7 @@ public:
time_t startTime;
tChannelID channelID;
int switchMinsBefore;
- int announceOnly;
+ int switchMode;
#if VDRVERSNUM >= 20305
cSwitchTimer(const cSwitchTimer &SwitchTimer) { *this = SwitchTimer; };
cSwitchTimer& operator= (const cSwitchTimer &SwitchTimer)
@@ -19,7 +19,7 @@ public:
this->startTime = SwitchTimer.startTime;
this->channelID = SwitchTimer.channelID;
this->switchMinsBefore = SwitchTimer.switchMinsBefore;
- this->announceOnly = SwitchTimer.announceOnly;
+ this->switchMode = SwitchTimer.switchMode;
return *this;
};
#endif