From: Felix Domke Date: Sun, 15 Jan 2006 12:07:08 +0000 (+0000) Subject: eAUTable: add stop() X-Git-Tag: 2.6.0~4439 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/9d8868b11c3ba69d42e68eabf4a3a1e8869ec8ec eAUTable: add stop() --- diff --git a/lib/dvb/esection.h b/lib/dvb/esection.h index a5b4c90e..af5c012b 100644 --- a/lib/dvb/esection.h +++ b/lib/dvb/esection.h @@ -98,7 +98,12 @@ public: ~eAUTable() { - current=next=0; + stop(); + } + + void stop() + { + current = next = 0; } int begin(eMainloop *m, const eDVBTableSpec &spec, ePtr demux)