aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-05-11 12:06:04 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-05-11 12:06:04 +0000
commit174f7b85cec9804931de3d432466e28b0da93fdb (patch)
tree798dbed8be02e1efeee121f2e4cbcd3803536d09 /lib/python/Components
parent940e359a595bf975b004c4e807090cce12e96dd1 (diff)
downloadenigma2-174f7b85cec9804931de3d432466e28b0da93fdb.tar.gz
enigma2-174f7b85cec9804931de3d432466e28b0da93fdb.zip
fix memleak
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/GUIComponent.py2
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):