diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-12-14 17:07:42 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-12-14 17:07:42 +0000 |
| commit | 55c2a88ecd94a2eb6aa00f1227912fcd2659932b (patch) | |
| tree | 785306edb681cfa959940892003b3ebf408be9f8 /lib/service/service.cpp | |
| parent | acf619a3c304992a7ec093cd95fdd6c0805cca66 (diff) | |
| download | enigma2-55c2a88ecd94a2eb6aa00f1227912fcd2659932b.tar.gz enigma2-55c2a88ecd94a2eb6aa00f1227912fcd2659932b.zip | |
add possibility to get a dict with transponderdata for servicerefs
Diffstat (limited to 'lib/service/service.cpp')
| -rw-r--r-- | lib/service/service.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/service/service.cpp b/lib/service/service.cpp index 73544991..f4094236 100644 --- a/lib/service/service.cpp +++ b/lib/service/service.cpp @@ -192,6 +192,11 @@ std::string iStaticServiceInformation::getInfoString(const eServiceReference &re return ""; } +PyObject *iStaticServiceInformation::getInfoObject(const eServiceReference &ref, int w) +{ + Py_RETURN_NONE; +} + int iServiceInformation::getInfo(int w) { return -1; @@ -204,8 +209,7 @@ std::string iServiceInformation::getInfoString(int w) PyObject* iServiceInformation::getInfoObject(int w) { - Py_INCREF(Py_None); - return Py_None; + Py_RETURN_NONE; } int iStaticServiceInformation::setInfo(const eServiceReference &ref, int w, int v) |
