diff options
| author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-03-22 13:21:18 +0100 |
|---|---|---|
| committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-03-22 13:21:18 +0100 |
| commit | f7e5ac3208a40ceed8bc3bd05fe81bffc774bbf5 (patch) | |
| tree | 984cb2deae344c86466e08c0146308ba7b11b9db /switchtimer.h | |
| parent | a8ca6f19da6c0c3834729416a0c9eacc004ef200 (diff) | |
| download | vdr-plugin-tvguide-f7e5ac3208a40ceed8bc3bd05fe81bffc774bbf5.tar.gz vdr-plugin-tvguide-f7e5ac3208a40ceed8bc3bd05fe81bffc774bbf5.tar.bz2 | |
Some cosmetic changes
Diffstat (limited to 'switchtimer.h')
| -rw-r--r-- | switchtimer.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/switchtimer.h b/switchtimer.h index 867a821..b661fdd 100644 --- a/switchtimer.h +++ b/switchtimer.h @@ -12,7 +12,15 @@ public: int announceOnly; #if VDRVERSNUM >= 20305 cSwitchTimer(const cSwitchTimer &SwitchTimer) { *this = SwitchTimer; }; - cSwitchTimer& operator= (const cSwitchTimer &SwitchTimer); + cSwitchTimer& operator= (const cSwitchTimer &SwitchTimer) + { + this->eventID = SwitchTimer.eventID; + this->startTime = SwitchTimer.startTime; + this->channelID = SwitchTimer.channelID; + this->switchMinsBefore = SwitchTimer.switchMinsBefore; + this->announceOnly = SwitchTimer.announceOnly; + return *this; + }; #endif cSwitchTimer(void); cSwitchTimer(const cEvent* Event); |
