diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-03-07 14:39:38 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-03-07 14:39:38 +0100 |
commit | 57f58a154654311fc70e478c0b36262da5c414c6 (patch) | |
tree | c41b574ecc9d1449c0d58150f2ef73c09bad0e99 /PLUGINS.html | |
parent | 680b1b8f8721c0462f04e838dcafd799a10b5574 (diff) | |
download | vdr-57f58a154654311fc70e478c0b36262da5c414c6.tar.gz vdr-57f58a154654311fc70e478c0b36262da5c414c6.tar.bz2 |
Removed the obsolete function cEITScanner::UsesDevice(); added new parameter LiveView to cStatus::ChannelSwitch()
Diffstat (limited to 'PLUGINS.html')
-rw-r--r-- | PLUGINS.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PLUGINS.html b/PLUGINS.html index 804d0550..5f936e56 100644 --- a/PLUGINS.html +++ b/PLUGINS.html @@ -1221,10 +1221,10 @@ If a plugin wants to get informed on various events in VDR, it can derive a clas class cMyStatusMonitor : public cStatus { protected: - virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber); + virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber<div class="modified">, bool LiveView</div>); }; -void cMyStatusMonitor::ChannelSwitch(const cDevice *Device, int ChannelNumber) +void cMyStatusMonitor::ChannelSwitch(const cDevice *Device, int ChannelNumber<div class="modified">, bool LiveView</div>) { if (ChannelNumber) dsyslog("channel switched to %d on DVB %d", ChannelNumber, Device->CardIndex()); |