21694da2c5
- 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.
18 lines
484 B
C++
18 lines
484 B
C++
--- status.h.orig
|
|
+++ status.h
|
|
@@ -20,8 +20,15 @@ private:
|
|
cDevice *myFilterDevice;
|
|
cGlobalInfosatepg *global;
|
|
protected:
|
|
+#if VDRVERSNUM >= 10726
|
|
+ virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber, bool LiveView);
|
|
+#else
|
|
virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber);
|
|
+#endif
|
|
public:
|
|
+#if VDRVERSNUM >= 10726
|
|
+ bool m_LiveView;
|
|
+#endif
|
|
cStatusInfosatepg(cGlobalInfosatepg *Global);
|
|
virtual ~cStatusInfosatepg(void);
|
|
};
|