summaryrefslogtreecommitdiff
path: root/PLUGINS.html
diff options
context:
space:
mode:
Diffstat (limited to 'PLUGINS.html')
-rw-r--r--PLUGINS.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/PLUGINS.html b/PLUGINS.html
index f531f361..a0f7ebc9 100644
--- a/PLUGINS.html
+++ b/PLUGINS.html
@@ -864,15 +864,15 @@ If a plugin wants to get informed on various events in VDR, it can derive a clas
class cMyStatusMonitor : public cStatusMonitor {
protected:
- virtual void ChannelSwitch(const cDvbApi *DvbApi, int ChannelNumber);
+ virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber);
};
-void cMyStatusMonitor::ChannelSwitch(const cDvbApi *DvbApi, int ChannelNumber)
+void cMyStatusMonitor::ChannelSwitch(const cDevice *Device, int ChannelNumber)
{
if (ChannelNumber)
- dsyslog("channel switched to %d on DVB %d", ChannelNumber, DvbApi->CardIndex());
+ dsyslog("channel switched to %d on DVB %d", ChannelNumber, Device->CardIndex());
else
- dsyslog("about to switch channel on DVB %d", DvbApi->CardIndex());
+ dsyslog("about to switch channel on DVB %d", Device->CardIndex());
}
</pre></td></tr></table><p>