diff options
author | Jochen Dolze <vdr@dolze.de> | 2009-02-05 17:58:15 +0100 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2009-02-05 17:58:15 +0100 |
commit | 210b6ab3d8a5367e116afefe31cea1d83fa094b9 (patch) | |
tree | a5a11ba0489b725994db55622ee7f2402cff03e9 /status.cpp | |
parent | 54a468314486b9c5e9ea34d36791873d54fb8365 (diff) | |
download | vdr-plugin-infosatepg-210b6ab3d8a5367e116afefe31cea1d83fa094b9.tar.gz vdr-plugin-infosatepg-210b6ab3d8a5367e116afefe31cea1d83fa094b9.tar.bz2 |
Changed setup channel option into Frequency, Polarization, Srate
Add setup option NoWakeup to prevent wakeup
Improved parsing of Shorttext
Fixed bug in event handling
Diffstat (limited to 'status.cpp')
-rw-r--r-- | status.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -29,9 +29,9 @@ void cStatusInfosatepg::ChannelSwitch(const cDevice *Device, int ChannelNumber) bool bAddFilter=false; // just add filter if we aren't locked - if (ChannelNumber==global->Channel) + if (ChannelNumber==global->Channel()) { - cChannel *chan=Channels.GetByNumber(global->Channel); + cChannel *chan=Channels.GetByNumber(global->Channel()); if (!chan) return; if (!Device->ProvidesTransponder(chan)) return; // ignore virtual devices if (Device==myFilterDevice) return; // already attached to this device |