From: Andreas Monzner Date: Mon, 14 Nov 2005 00:38:37 +0000 (+0000) Subject: comment out non correct working code, X-Git-Tag: 2.6.0~5252 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/8bd6103bc110547cf683f931a1d9d7d14156bf98 comment out non correct working code, add workaround for C+France EPG --- diff --git a/lib/service/event.cpp b/lib/service/event.cpp index 36446797..684c9e5e 100644 --- a/lib/service/event.cpp +++ b/lib/service/event.cpp @@ -78,6 +78,7 @@ bool eServiceEvent::loadLanguage(Event *evt, std::string lang) m_extended_description += convertDVBUTF8(eed->getText()); retval=1; } +#if 0 const ExtendedEventList *itemlist = eed->getItems(); for (ExtendedEventConstIterator it = itemlist->begin(); it != itemlist->end(); ++it) { @@ -86,12 +87,15 @@ bool eServiceEvent::loadLanguage(Event *evt, std::string lang) m_extended_description += ' '; m_extended_description += convertDVBUTF8((*it)->getItem()); } +#endif break; } default: break; } } + if ( m_extended_description.find(m_short_description) == 0 ) + m_short_description=""; return retval; }