X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/86126d70cfac1f47db0b0b20b1f8412c68b16d49..8e63444e6767c17cffe73fb03a88fe4b68fa06c3:/lib/python/Screens/SimpleSummary.py?ds=sidebyside diff --git a/lib/python/Screens/SimpleSummary.py b/lib/python/Screens/SimpleSummary.py index d10c32da..411e2276 100644 --- a/lib/python/Screens/SimpleSummary.py +++ b/lib/python/Screens/SimpleSummary.py @@ -1,16 +1,18 @@ from Screens.Screen import Screen +from Components.Sources.Source import ObsoleteSource class SimpleSummary(Screen): skin = """ - - + + WithSeconds + + """ def __init__(self, session, root_screen): from Components.Label import Label - from Components.Clock import Clock Screen.__init__(self, session) - self["Clock"] = Clock() + self["Clock"] = ObsoleteSource(new_source = "global.CurrentTime", removal_date = "2008-01") self["Title"] = Label(root_screen.title) def setTitle(self, title):