aboutsummaryrefslogtreecommitdiff
path: root/lib/service/servicedvb.cpp
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-04-03 07:46:11 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-04-03 07:46:11 +0000
commitaf5dfb0ec911f152f909530cf29c9e2ba74e2c1f (patch)
treef4445e3d8c47626f5a7ef0cf9de8faa5b2e2ecc1 /lib/service/servicedvb.cpp
parent4c7cd66f2d4bc83faeaa8a94752330038a4672c4 (diff)
downloadenigma2-af5dfb0ec911f152f909530cf29c9e2ba74e2c1f.tar.gz
enigma2-af5dfb0ec911f152f909530cf29c9e2ba74e2c1f.zip
show service name in movielist
Diffstat (limited to 'lib/service/servicedvb.cpp')
-rw-r--r--lib/service/servicedvb.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp
index 033d13d3..94c31b4f 100644
--- a/lib/service/servicedvb.cpp
+++ b/lib/service/servicedvb.cpp
@@ -186,6 +186,8 @@ int eStaticServiceDVBPVRInformation::getInfo(const eServiceReference &ref, int w
{
case iServiceInformation::sDescription:
return iServiceInformation::resIsString;
+ case iServiceInformation::sServiceref:
+ return iServiceInformation::resIsString;
case iServiceInformation::sTimeCreate:
if (m_parser.m_time_create)
return m_parser.m_time_create;
@@ -202,6 +204,8 @@ std::string eStaticServiceDVBPVRInformation::getInfoString(const eServiceReferen
{
case iServiceInformation::sDescription:
return m_parser.m_description;
+ case iServiceInformation::sServiceref:
+ return m_parser.m_ref.toString();
default:
return "";
}