rename list -> helplist
authorghost <andreas.monzner@multimedia-labs.de>
Fri, 13 Feb 2009 22:54:25 +0000 (23:54 +0100)
committerghost <andreas.monzner@multimedia-labs.de>
Fri, 13 Feb 2009 22:54:25 +0000 (23:54 +0100)
lib/python/Components/HelpMenuList.py

index 2a7bd9958de374a4d337cc7b8c49ce98b8b330b5..ddf871a7db4bbc4d21293f738ccf723ceec1e83d 100755 (executable)
@@ -7,7 +7,7 @@ from Tools.KeyBindings import queryKeyBinding, getKeyDescription
 # [ ( actionmap, context, [(action, help), (action, help), ...] ), (actionmap, ... ), ... ]
 
 class HelpMenuList(GUIComponent):
-       def __init__(self, list, callback):
+       def __init__(self, helplist, callback):
                GUIComponent.__init__(self)
                self.onSelChanged = [ ]
                self.l = eListboxPythonMultiContent()
@@ -15,7 +15,7 @@ class HelpMenuList(GUIComponent):
                self.extendedHelp = False
 
                l = [ ]
-               for (actionmap, context, actions) in list:
+               for (actionmap, context, actions) in helplist:
                        for (action, help) in actions:
                                entry = [ ]