forked from Lainports/freebsd-ports
- Update multimedia/vdr-plugin-epgsearch to 1.0.1s20120322 git snapshot. - Update multimedia/vdr-plugin-femon to 1.7.15 . - Update multimedia/vdr-plugin-iptv to 0.5.0 . - Update multimedia/vdr-plugin-osdteletext to 0.9.2 . - Update multimedia/vdr-plugin-streamdev to 0.5.1p20120311 git snapthot. - Update multimedia/vdr-plugin-xineliboutput to 1.0.90s20111129.1002 cvs snapshot. - Bump PORTREVISION for all other plugins and add vdr 1.7.27 compatibility/bugfix patches where necessary.
21 lines
572 B
C++
21 lines
572 B
C++
--- status.cpp.orig
|
|
+++ status.cpp
|
|
@@ -21,11 +21,18 @@ cStatusInfosatepg::~cStatusInfosatepg(vo
|
|
if (myFilter) delete myFilter;
|
|
}
|
|
|
|
+#if VDRVERSNUM >= 10726
|
|
+void cStatusInfosatepg::ChannelSwitch(const cDevice *Device, int ChannelNumber, bool LiveView)
|
|
+#else
|
|
void cStatusInfosatepg::ChannelSwitch(const cDevice *Device, int ChannelNumber)
|
|
+#endif
|
|
{
|
|
if (!ChannelNumber) return;
|
|
if (!Device) return; // just to be safe
|
|
|
|
+#if VDRVERSNUM >= 10726
|
|
+ m_LiveView = LiveView;
|
|
+#endif
|
|
bool bAddFilter=false;
|
|
|
|
// just add filter if we aren't locked
|