aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/Wizard.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-12-15 12:29:58 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-12-15 12:29:58 +0000
commit4230d1eb60d2c85cc1af57f0b19f66f7144d5e23 (patch)
treed14bcf35fe9708c82a3fe9fa78c2b11975eaec38 /lib/python/Screens/Wizard.py
parent8b7f6168191f06a672e9f437805d9f5cac715397 (diff)
downloadenigma2-4230d1eb60d2c85cc1af57f0b19f66f7144d5e23.tar.gz
enigma2-4230d1eb60d2c85cc1af57f0b19f66f7144d5e23.zip
wizard: cleanup circular reference on close
Diffstat (limited to 'lib/python/Screens/Wizard.py')
-rw-r--r--lib/python/Screens/Wizard.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py
index 0f8f1998..fd9e9c3c 100644
--- a/lib/python/Screens/Wizard.py
+++ b/lib/python/Screens/Wizard.py
@@ -76,6 +76,7 @@ class Wizard(Screen, HelpableScreen):
self["list"] = MenuList(self.list)
self.onShown.append(self.updateValues)
+ self.onClose.append(self.delReferences)
self["actions"] = NumberActionMap(["WizardActions", "NumberActions"],
{
@@ -200,6 +201,9 @@ class Wizard(Screen, HelpableScreen):
else:
self["config"].l.setList([])
+ def delReferences(self):
+ del self.configInstance
+
class WizardManager:
def __init__(self):
self.wizards = []