diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-05-11 12:06:04 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-05-11 12:06:04 +0000 |
| commit | 174f7b85cec9804931de3d432466e28b0da93fdb (patch) | |
| tree | 798dbed8be02e1efeee121f2e4cbcd3803536d09 /lib/python/Components/GUIComponent.py | |
| parent | 940e359a595bf975b004c4e807090cce12e96dd1 (diff) | |
| download | enigma2-174f7b85cec9804931de3d432466e28b0da93fdb.tar.gz enigma2-174f7b85cec9804931de3d432466e28b0da93fdb.zip | |
fix memleak
Diffstat (limited to 'lib/python/Components/GUIComponent.py')
| -rw-r--r-- | lib/python/Components/GUIComponent.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/GUIComponent.py b/lib/python/Components/GUIComponent.py index afe95266..c3edaa73 100644 --- a/lib/python/Components/GUIComponent.py +++ b/lib/python/Components/GUIComponent.py @@ -25,7 +25,7 @@ class GUIComponent(object): pass def destroy(self): - pass + self.__dict__.clear() # this works only with normal widgets - if you don't have self.instance, override this. def applySkin(self, desktop): |
