From c0d78035b8c76e719bf7c05ff3812eb5a6ce9fe3 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Mon, 1 May 2006 11:47:04 +0000 Subject: simplify GUIcreate/createWidget, fix base class order --- lib/python/Components/MenuList.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'lib/python/Components/MenuList.py') diff --git a/lib/python/Components/MenuList.py b/lib/python/Components/MenuList.py index f4b2c361..b1b115b7 100644 --- a/lib/python/Components/MenuList.py +++ b/lib/python/Components/MenuList.py @@ -14,17 +14,17 @@ class MenuList(HTMLComponent, GUIComponent): def getCurrent(self): return self.l.getCurrentSelection() + + GUI_WIDGET = eListbox - def GUIcreate(self, parent): - self.instance = eListbox(parent) - self.instance.setContent(self.l) - self.instance.selectionChanged.get().append(self.selectionChanged) + def postWidgetCreate(self, instance): + instance.setContent(self.l) + instance.selectionChanged.get().append(self.selectionChanged) if self.enableWrapAround: self.instance.setWrapAround(True) - def GUIdelete(self): - self.instance.setContent(None) - self.instance = None + def preWidgetRemove(self, instance): + instance.setContent(None) def selectionChanged(self): for f in self.onSelectionChanged: -- cgit v1.2.3