aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/epgcache.cpp
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-01-15 19:36:42 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-01-15 19:36:42 +0000
commite68ab3a6255de286aad4f503ee9929d0c503ebcc (patch)
tree825f7f686b7486de52052a5927d67c63415130d5 /lib/dvb/epgcache.cpp
parenta3d4ed7a6cafe80056916cfc6f27e8d4df94a90d (diff)
downloadenigma2-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.cpp4
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;
}