diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-04-09 21:56:50 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-04-09 21:56:50 +0000 |
| commit | 9a0d02d2e74c24dcc7b8bfe6df937e92c8af1d0d (patch) | |
| tree | 79fe085266617752c75f38a2e9fb37008a400b35 /lib/python/Components/GUIComponent.py | |
| parent | 53cccbdf7f4b485d295689d6ce9fd77a01694602 (diff) | |
| download | enigma2-9a0d02d2e74c24dcc7b8bfe6df937e92c8af1d0d.tar.gz enigma2-9a0d02d2e74c24dcc7b8bfe6df937e92c8af1d0d.zip | |
add destroy() for Components to fix bug #52
Diffstat (limited to 'lib/python/Components/GUIComponent.py')
| -rw-r--r-- | lib/python/Components/GUIComponent.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/Components/GUIComponent.py b/lib/python/Components/GUIComponent.py index 493df681..8f6362fd 100644 --- a/lib/python/Components/GUIComponent.py +++ b/lib/python/Components/GUIComponent.py @@ -24,6 +24,9 @@ class GUIComponent: def onHide(self): pass + def destroy(self): + pass + # this works only with normal widgets - if you don't have self.instance, override this. def applySkin(self, desktop): if self.state == self.HIDDEN: |
