diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-05-01 11:47:04 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-05-01 11:47:04 +0000 |
| commit | c0d78035b8c76e719bf7c05ff3812eb5a6ce9fe3 (patch) | |
| tree | 22d7ac7e4f0aaf3b91574d81ac30fd6a9d97fdb7 /lib/python/Components/ProgressBar.py | |
| parent | 9c5ae5bc6ef248b414e3153538936477cccfdd20 (diff) | |
| download | enigma2-c0d78035b8c76e719bf7c05ff3812eb5a6ce9fe3.tar.gz enigma2-c0d78035b8c76e719bf7c05ff3812eb5a6ce9fe3.zip | |
simplify GUIcreate/createWidget, fix base class order
Diffstat (limited to 'lib/python/Components/ProgressBar.py')
| -rw-r--r-- | lib/python/Components/ProgressBar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/ProgressBar.py b/lib/python/Components/ProgressBar.py index 00b1bbe3..9bec1796 100644 --- a/lib/python/Components/ProgressBar.py +++ b/lib/python/Components/ProgressBar.py @@ -5,7 +5,7 @@ from VariableValue import * from enigma import eSlider # a general purpose progress bar -class ProgressBar(HTMLComponent, GUIComponent, VariableValue): +class ProgressBar(VariableValue, HTMLComponent, GUIComponent): def __init__(self): GUIComponent.__init__(self) VariableValue.__init__(self) |
