diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-09-21 20:45:28 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-09-21 20:45:28 +0000 |
| commit | 0923ac50c8dc0d3f77363adb093b6e7e29f030ed (patch) | |
| tree | ea8ebda3c0f0e22540655c71995d941312883776 /lib | |
| parent | 3b5048babf7e8df97b8d0267543c7fa47ec7f21d (diff) | |
| download | enigma2-0923ac50c8dc0d3f77363adb093b6e7e29f030ed.tar.gz enigma2-0923ac50c8dc0d3f77363adb093b6e7e29f030ed.zip | |
remove unneeded code
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/python/Components/GUISkin.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/python/Components/GUISkin.py b/lib/python/Components/GUISkin.py index b7cfb430..39499c77 100644 --- a/lib/python/Components/GUISkin.py +++ b/lib/python/Components/GUISkin.py @@ -1,7 +1,6 @@ from GUIComponent import GUIComponent from skin import applyAllAttributes from Tools.CList import CList -from Sources.Source import Source class GUISkin: __module__ = __name__ @@ -36,14 +35,9 @@ class GUISkin: f() def deleteGUIScreen(self): - seenFakeSource = False for (name, val) in self.items(): - if name == "fake" and isinstance(val, Source): - seenFakeSource = True if isinstance(val, GUIComponent): val.GUIdelete() - if seenFakeSource: - del self["fake"] def close(self): self.deleteGUIScreen() |
