diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-12-03 15:53:37 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-12-03 15:53:37 +0000 |
| commit | 36940d42cf3cc58b40a5a6f5fe86bad50ff48ad7 (patch) | |
| tree | e0990a34f6c21597f045297b9bc322a0f1308857 /lib/service/service.cpp | |
| parent | 20fdb2a2af40da98427a702a03a79b1fbec3d7af (diff) | |
| download | enigma2-36940d42cf3cc58b40a5a6f5fe86bad50ff48ad7.tar.gz enigma2-36940d42cf3cc58b40a5a6f5fe86bad50ff48ad7.zip | |
fix marking non playable services in channellist
Diffstat (limited to 'lib/service/service.cpp')
| -rw-r--r-- | lib/service/service.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/service/service.cpp b/lib/service/service.cpp index a7f6e529..c043a583 100644 --- a/lib/service/service.cpp +++ b/lib/service/service.cpp @@ -144,8 +144,13 @@ int iStaticServiceInformation::getLength(const eServiceReference &ref) return -1; } +bool iStaticServiceInformation::isPlayable(const eServiceReference &ref, const eServiceReference &ignore) +{ + return true; +} + RESULT iServiceInformation::getEvent(ePtr<eServiceEvent> &evt, int m_nownext) -{ +{ evt = 0; return -1; } |
