X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fdvb%2Fepgcache.h;h=01d738cb3aa1f1795d7ecfcd6dd95dbbfadb15eb;hb=198b91600d552127762c7d24502398dab3fc4594;hp=5643fa43eae0094f8b10bfd06773638809ba33d7;hpb=beecd41f1d27130f89fbb497fd5a582097c8d6be;p=vuplus_dvbapp diff --git a/lib/dvb/epgcache.h b/lib/dvb/epgcache.h index 5643fa4..01d738c 100644 --- a/lib/dvb/epgcache.h +++ b/lib/dvb/epgcache.h @@ -223,7 +223,7 @@ private: timeMap::iterator m_timemap_cursor, m_timemap_end; #endif // SWIG public: - static RESULT getInstance(eEPGCache *&ptr); + static eEPGCache *getInstance() { return instance; } eEPGCache(); ~eEPGCache(); @@ -237,7 +237,7 @@ public: // eventData's are plain entrys out of the cache.. it's not safe to use them after cache unlock // but its faster in use... its not allowed to delete this pointers via delete or free.. RESULT lookupEvent(const eServiceReference &service, int event_id, const eventData *&); - RESULT lookupEvent(const eServiceReference &service, time_t , const eventData *&); + RESULT lookupEvent(const eServiceReference &service, time_t, const eventData *&); RESULT getNextTimeEntry(const eventData *&); #ifndef SWIG @@ -257,7 +257,7 @@ public: // eServiceEvent are parsed epg events.. it's safe to use them after cache unlock // for use from python ( members: m_start_time, m_duration, m_short_description, m_extended_description ) RESULT lookupEvent(const eServiceReference &service, int event_id, ePtr &); - RESULT lookupEvent(const eServiceReference &service, time_t , ePtr &); + RESULT lookupEvent(const eServiceReference &service, time_t, ePtr &); RESULT getNextTimeEntry(ePtr &); };