diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2007-09-30 15:05:39 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2007-09-30 15:05:39 +0000 |
| commit | 7cdca2a2cfb44ad34a3b36fb589f02b861c411c3 (patch) | |
| tree | d9944f4ee6a171e9ed3f9c6028d50d012d640070 /lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py | |
| parent | 29ca0aed97fb878905fa932facd6515200fc50f5 (diff) | |
| download | enigma2-7cdca2a2cfb44ad34a3b36fb589f02b861c411c3.tar.gz enigma2-7cdca2a2cfb44ad34a3b36fb589f02b861c411c3.zip | |
replace some more Clock() by ObsoleteSource redirect (and fix skin_default), by Moritz Venn
Diffstat (limited to 'lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py')
| -rw-r--r-- | lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py b/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py index 594aea4b..9a8b4935 100644 --- a/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py +++ b/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py @@ -7,7 +7,7 @@ from Components.HTMLComponent import HTMLComponent from Components.GUIComponent import GUIComponent from Components.EpgList import Rect from Components.Sources.Event import Event -from Components.Sources.Clock import Clock +from Components.Sources.Source import ObsoleteSource from Screens.Screen import Screen from Screens.EventView import EventViewSimple from Screens.TimeDateInput import TimeDateInput @@ -327,7 +327,7 @@ class GraphMultiEPG(Screen): self["key_green"] = Button(_("Add timer")) self["timeline_text"] = TimelineText() self["Event"] = Event() - self["Clock"] = Clock() + self["Clock"] = ObsoleteSource(new_source = "global.CurrentTime", removal_date = "2008-01") self.time_lines = [ ] for x in (0,1,2,3,4,5): pm = Pixmap() |
