blob: e53beb65135e6268267e9aa095f185ca65151c08 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- 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);
};
|