summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Bornkessel <hd_brummy@gentoo.org>2014-05-30 22:18:19 +0200
committerJoerg Bornkessel <hd_brummy@gentoo.org>2014-05-30 22:18:19 +0200
commit72aef57ce6c300a99e55bcbd19220088a004b747 (patch)
tree72a03bc6857f228b9af8fcd0d028412c3a61d58c
parent2e417f06045deac4bcbd98903b424d7ec232c6d0 (diff)
downloadvdr-plugin-audiorecorder-72aef57ce6c300a99e55bcbd19220088a004b747.tar.gz
vdr-plugin-audiorecorder-72aef57ce6c300a99e55bcbd19220088a004b747.tar.bz2
added missing paramater LiveView, bug 1846
-rw-r--r--dispatcher.c2
-rw-r--r--dispatcher.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/dispatcher.c b/dispatcher.c
index 3b5ff14..1ea73cc 100644
--- a/dispatcher.c
+++ b/dispatcher.c
@@ -152,7 +152,7 @@ void cDispatcher::Action(void)
}
-void cDispatcher::ChannelSwitch(const cDevice *device, int channel_number)
+void cDispatcher::ChannelSwitch(const cDevice *device, int channel_number, bool LiveView)
{
/*
* workaround to detach active audioreceivers if the attached device
diff --git a/dispatcher.h b/dispatcher.h
index 0dde64d..256aa67 100644
--- a/dispatcher.h
+++ b/dispatcher.h
@@ -69,7 +69,7 @@ protected:
virtual void Activate(bool on);
virtual void Action(void);
- virtual void ChannelSwitch(const cDevice *device, int channel_number);
+ virtual void ChannelSwitch(const cDevice *device, int channel_number, bool LiveView);
public:
cDispatcher(void);
~cDispatcher();