diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2009-02-11 12:52:48 +0100 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2009-02-11 12:52:48 +0100 |
| commit | bbfcb7ea1f040d030277e2b6f2efa9ea0967bf2b (patch) | |
| tree | c5945c791698c14723e989449e6b4bfcc275c05d /lib/nav/pcore.cpp | |
| parent | 4f7990ff2a55874b9eb65e3c9cd47dacb9f76deb (diff) | |
| parent | 5e6f814d005a01caa437a532e61f4b338617ff67 (diff) | |
| download | enigma2-bbfcb7ea1f040d030277e2b6f2efa9ea0967bf2b.tar.gz enigma2-bbfcb7ea1f040d030277e2b6f2efa9ea0967bf2b.zip | |
Merge branch 'master' of /home/tmbinc/enigma2-git into tmbinc/FixTimingBugs
Conflicts:
lib/dvb/decoder.cpp
Diffstat (limited to 'lib/nav/pcore.cpp')
| -rw-r--r-- | lib/nav/pcore.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/nav/pcore.cpp b/lib/nav/pcore.cpp index a6ed35f6..b38e5597 100644 --- a/lib/nav/pcore.cpp +++ b/lib/nav/pcore.cpp @@ -37,9 +37,9 @@ RESULT pNavigation::stopService() return m_core->stopService(); } -RESULT pNavigation::recordService(const eServiceReference &ref, ePtr<iRecordableService> &service) +RESULT pNavigation::recordService(const eServiceReference &ref, ePtr<iRecordableService> &service, bool simulate) { - return m_core->recordService(ref, service); + return m_core->recordService(ref, service, simulate); } RESULT pNavigation::stopRecordService(ePtr<iRecordableService> &service) @@ -47,9 +47,9 @@ RESULT pNavigation::stopRecordService(ePtr<iRecordableService> &service) return m_core->stopRecordService(service); } -PyObject *pNavigation::getRecordings(void) +PyObject *pNavigation::getRecordings(bool simulate) { - return m_core->getRecordings(); + return m_core->getRecordings(simulate); } void pNavigation::navEvent(int event) |
