diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-01-15 19:36:42 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-01-15 19:36:42 +0000 |
| commit | e68ab3a6255de286aad4f503ee9929d0c503ebcc (patch) | |
| tree | 825f7f686b7486de52052a5927d67c63415130d5 /lib/dvb/epgcache.cpp | |
| parent | a3d4ed7a6cafe80056916cfc6f27e8d4df94a90d (diff) | |
| download | enigma2-e68ab3a6255de286aad4f503ee9929d0c503ebcc.tar.gz enigma2-e68ab3a6255de286aad4f503ee9929d0c503ebcc.zip | |
when the system time on e2 startup seems valid (> 1.1.2004) we use this time
as time reference for the internal transponder time correction.. so the
systemtime stays valid on startup from deepstandby on a transponder with
incorrect transponder time transmission
Diffstat (limited to 'lib/dvb/epgcache.cpp')
| -rw-r--r-- | lib/dvb/epgcache.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/dvb/epgcache.cpp b/lib/dvb/epgcache.cpp index afbc6e01..1428cc7c 100644 --- a/lib/dvb/epgcache.cpp +++ b/lib/dvb/epgcache.cpp @@ -226,7 +226,11 @@ eEPGCache::eEPGCache() if (!res_mgr) eDebug("[eEPGCache] no resource manager !!!!!!!"); else + { res_mgr->connectChannelAdded(slot(*this,&eEPGCache::DVBChannelAdded), m_chanAddedConn); + if (eDVBLocalTimeHandler::getInstance()->ready()) + timeUpdated(); + } instance=this; } |
