diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-06-27 14:43:24 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-06-27 14:43:24 +0000 |
| commit | bcbd5801c2be23b2ee1a22e7b088fc2fb654f1c9 (patch) | |
| tree | 14a12d4baa5d72542cf2e8ffbef249634dc8b89f /lib/python/Components/Sources/RdsDecoder.py | |
| parent | 8b921858d57c9d4cd5ff0ec40a484a4231762974 (diff) | |
| download | enigma2-bcbd5801c2be23b2ee1a22e7b088fc2fb654f1c9.tar.gz enigma2-bcbd5801c2be23b2ee1a22e7b088fc2fb654f1c9.zip | |
some cleanups,
add missing destroy calls,
fix incomplete destroy calls,
small speedup
Diffstat (limited to 'lib/python/Components/Sources/RdsDecoder.py')
| -rw-r--r-- | lib/python/Components/Sources/RdsDecoder.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/python/Components/Sources/RdsDecoder.py b/lib/python/Components/Sources/RdsDecoder.py index 886f81f6..3ec9a25d 100644 --- a/lib/python/Components/Sources/RdsDecoder.py +++ b/lib/python/Components/Sources/RdsDecoder.py @@ -27,3 +27,7 @@ class RdsDecoder(PerServiceBase, Source, object): self.changed((self.CHANGED_CLEAR,)) else: self.changed((self.CHANGED_SPECIFIC, what)) + + def destroy(self): + PerServiceBase.destroy(self) + Source.destroy(self) |
