add ability to remove list and config from a wizard
[enigma2.git] / lib / python / Components / VariableText.py
index 694355e7fa7bd7d5c6099eebfe2941b494105c58..76dc201a4e6b5804c2a22362a2144b24857f37a0 100644 (file)
@@ -1,3 +1,5 @@
+import skin
+
 class VariableText:
        """VariableText can be used for components which have a variable text, based on any widget with setText call"""
        
 class VariableText:
        """VariableText can be used for components which have a variable text, based on any widget with setText call"""
        
@@ -13,8 +15,8 @@ class VariableText:
        def getText(self):
                return self.message
        
        def getText(self):
                return self.message
        
-       def GUIcreate(self, parent, skindata):
-               self.instance = self.createWidget(parent, skindata)
+       def GUIcreate(self, parent):
+               self.instance = self.createWidget(parent)
                self.instance.setText(self.message)
        
        def GUIdelete(self):
                self.instance.setText(self.message)
        
        def GUIdelete(self):