diff options
| -rw-r--r-- | dispatcher.c | 2 | ||||
| -rw-r--r-- | dispatcher.h | 2 |
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(); |
