diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-06-05 21:20:43 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-06-05 21:20:43 +0000 |
| commit | 2c34a36b091994d17a50001faba2f1609c1a6231 (patch) | |
| tree | ed0ba28431ef40789a31971e4fea31dedf0b47a8 /lib | |
| parent | c61d41422afe49ea1c31bc14913452ef3b571c21 (diff) | |
| download | enigma2-2c34a36b091994d17a50001faba2f1609c1a6231.tar.gz enigma2-2c34a36b091994d17a50001faba2f1609c1a6231.zip | |
change interface a bit
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/service/iservice.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/service/iservice.h b/lib/service/iservice.h index 9b962156..fed66a29 100644 --- a/lib/service/iservice.h +++ b/lib/service/iservice.h @@ -442,9 +442,9 @@ class PyList; class iSubtitleOutput: public iObject { public: - virtual RESULT enableSubtitles(eWidget *parent, int index)=0; + virtual RESULT enableSubtitles(eWidget *parent, PyObject *entry)=0; virtual RESULT disableSubtitles(eWidget *parent)=0; - virtual SWIG_VOID(RESULT) getSubtitleList(PyList *list)=0; + virtual PyObject *getSubtitleList()=0; }; TEMPLATE_TYPEDEF(ePtr<iSubtitleOutput>, iSubtitleOutputPtr); |
