aboutsummaryrefslogtreecommitdiff
path: root/lib/service/event.cpp
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-11-14 00:38:37 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-11-14 00:38:37 +0000
commit8bd6103bc110547cf683f931a1d9d7d14156bf98 (patch)
tree6b16ec1db908fc71c73f895481e8f0295d791938 /lib/service/event.cpp
parent198b91600d552127762c7d24502398dab3fc4594 (diff)
downloadenigma2-8bd6103bc110547cf683f931a1d9d7d14156bf98.tar.gz
enigma2-8bd6103bc110547cf683f931a1d9d7d14156bf98.zip
comment out non correct working code,
add workaround for C+France EPG
Diffstat (limited to 'lib/service/event.cpp')
-rw-r--r--lib/service/event.cpp4
1 files changed, 4 insertions, 0 deletions
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;
}