diff --git a/mythtv/libs/libmythtv/iptvchannel.h b/mythtv/libs/libmythtv/iptvchannel.h
index f54169e..eabcc30 100644
|
a
|
b
|
class IPTVChannel : public DTVChannel
|
| 35 | 35 | // Channel scanning stuff |
| 36 | 36 | bool Tune(const DTVMultiplex&, QString) { return true; } |
| 37 | 37 | |
| | 38 | virtual bool IsExternalChannelChangeSupported(void) { return true; } |
| | 39 | |
| 38 | 40 | private: |
| 39 | 41 | IPTVChannelInfo GetCurrentChanInfo(void) const |
| 40 | 42 | { return GetChanInfo(m_curchannelname); } |
diff --git a/mythtv/libs/libmythtv/iptvrecorder.h b/mythtv/libs/libmythtv/iptvrecorder.h
index 82194b1..3d380c6 100644
|
a
|
b
|
class IPTVRecorder : public DTVRecorder, public TSDataListener
|
| 37 | 37 | |
| 38 | 38 | virtual void SetStreamData(void); |
| 39 | 39 | |
| 40 | | virtual bool IsExternalChannelChangeSupported(void) { return true; } |
| 41 | | |
| 42 | 40 | virtual void Pause(bool clear = true); |
| 43 | 41 | |
| 44 | 42 | private: |