aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/VideoWindow.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-05-01 11:47:04 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-05-01 11:47:04 +0000
commitc0d78035b8c76e719bf7c05ff3812eb5a6ce9fe3 (patch)
tree22d7ac7e4f0aaf3b91574d81ac30fd6a9d97fdb7 /lib/python/Components/VideoWindow.py
parent9c5ae5bc6ef248b414e3153538936477cccfdd20 (diff)
downloadenigma2-c0d78035b8c76e719bf7c05ff3812eb5a6ce9fe3.tar.gz
enigma2-c0d78035b8c76e719bf7c05ff3812eb5a6ce9fe3.zip
simplify GUIcreate/createWidget, fix base class order
Diffstat (limited to 'lib/python/Components/VideoWindow.py')
-rw-r--r--lib/python/Components/VideoWindow.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/python/Components/VideoWindow.py b/lib/python/Components/VideoWindow.py
index db247980..88cd33f9 100644
--- a/lib/python/Components/VideoWindow.py
+++ b/lib/python/Components/VideoWindow.py
@@ -4,9 +4,5 @@ from enigma import eVideoWidget
class VideoWindow(GUIComponent):
def __init__(self):
GUIComponent.__init__(self)
-
- def GUIcreate(self, parent):
- self.instance = eVideoWidget(parent)
- def GUIdelete(self):
- self.instance = None
+ GUI_WIDGET = eVideoWidget