diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-03-04 20:38:59 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-03-04 20:38:59 +0100 |
| commit | 8632fc87741200695d2726b689853b6b550a4b06 (patch) | |
| tree | 1628bdbbc62506d5c78a83b4a88dd1041c72633b /lib/dvb/dvbtime.h | |
| parent | 404743faf9cbf0c70d68ca047f2a8e914a0d94b5 (diff) | |
| download | enigma2-8632fc87741200695d2726b689853b6b550a4b06.tar.gz enigma2-8632fc87741200695d2726b689853b6b550a4b06.zip | |
add possibility to disable the dvb transponder time sync
not via gui yet... but config.misc.useTransponderTime=True/False in /etc/enigma2/settings should work
Diffstat (limited to 'lib/dvb/dvbtime.h')
| -rw-r--r-- | lib/dvb/dvbtime.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/dvb/dvbtime.h b/lib/dvb/dvbtime.h index 3f8d9b7d..3afff75e 100644 --- a/lib/dvb/dvbtime.h +++ b/lib/dvb/dvbtime.h @@ -54,6 +54,7 @@ class eDVBLocalTimeHandler: public Object ePtr<eConnection> m_stateChangedConn; int m_prevChannelState; }; + bool m_use_dvb_time; ePtr<eTimer> m_updateNonTunedTimer; friend class TDT; std::map<iDVBChannel*, channel_data> m_knownChannels; @@ -78,6 +79,8 @@ public: eDVBLocalTimeHandler(); ~eDVBLocalTimeHandler(); #endif + bool getUseDVBTime() { return m_use_dvb_time; } + void setUseDVBTime(bool b); PSignal0<void> m_timeUpdated; bool ready() const { return m_time_ready; } static eDVBLocalTimeHandler *getInstance() { return instance; } |
