diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-02-14 20:40:05 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-02-14 20:40:05 +0000 |
| commit | 8c2a83d6b2a60b2bd408ccdc6d5afd6da506912f (patch) | |
| tree | c382ddc39fdc759befd9e281bcc011e1dd579e9d /lib/python/Components/Converter | |
| parent | 6f73e6abddf4170357c490966d0e1c622eb376f5 (diff) | |
| download | enigma2-8c2a83d6b2a60b2bd408ccdc6d5afd6da506912f.tar.gz enigma2-8c2a83d6b2a60b2bd408ccdc6d5afd6da506912f.zip | |
unlink some cyclic dependencys to get garbage collection working
Diffstat (limited to 'lib/python/Components/Converter')
| -rw-r--r-- | lib/python/Components/Converter/ConditionalShowHide.py | 2 | ||||
| -rw-r--r-- | lib/python/Components/Converter/Poll.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/Converter/ConditionalShowHide.py b/lib/python/Components/Converter/ConditionalShowHide.py index f5ec7039..de3df8fa 100644 --- a/lib/python/Components/Converter/ConditionalShowHide.py +++ b/lib/python/Components/Converter/ConditionalShowHide.py @@ -61,4 +61,4 @@ class ConditionalShowHide(Converter, object): def destroy(self): if self.timer: - self.timer.timeout.get().remove(self.blinkFunc) + self.timer.callback.remove(self.blinkFunc) diff --git a/lib/python/Components/Converter/Poll.py b/lib/python/Components/Converter/Poll.py index 33b9f305..6db93ef5 100644 --- a/lib/python/Components/Converter/Poll.py +++ b/lib/python/Components/Converter/Poll.py @@ -30,4 +30,4 @@ class Poll(object): self.poll() def destroy(self): - self.__poll_timer.timeout.get().remove(self.poll) + self.__poll_timer.callback.remove(self.poll) |
