aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/TimerEdit.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-08 23:12:55 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-08 23:12:55 +0000
commitd7d95c7b2435ab1819bc23eff5ff53aaac2b9ff1 (patch)
tree685e43f0c1ba2cb500be33c7c31c91b566ba5177 /lib/python/Screens/TimerEdit.py
parent86ea09d8299c4de044b048444ad28c91e01a86f4 (diff)
downloadenigma2-d7d95c7b2435ab1819bc23eff5ff53aaac2b9ff1.tar.gz
enigma2-d7d95c7b2435ab1819bc23eff5ff53aaac2b9ff1.zip
use the new TimerEntry-screen to edit a timerentry
Diffstat (limited to 'lib/python/Screens/TimerEdit.py')
-rw-r--r--lib/python/Screens/TimerEdit.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/python/Screens/TimerEdit.py b/lib/python/Screens/TimerEdit.py
index f8c9f207..1bc734a6 100644
--- a/lib/python/Screens/TimerEdit.py
+++ b/lib/python/Screens/TimerEdit.py
@@ -1,10 +1,11 @@
from Screen import Screen
-from Components.TimerList import TimerList, TimerEntry
+from Components.TimerList import TimerList, TimerEntryComponent
from Components.ActionMap import ActionMap
from Components.TimeInput import TimeInput
from Components.Label import Label
from Components.Button import Button
from Components.TextInput import TextInput
+from TimerEntry import TimerEntry
class TimerEdit(Screen):
def __init__(self, session, entry):
@@ -55,10 +56,10 @@ class TimerEditList(Screen):
list = [ ]
for timer in session.nav.RecordTimer.timer_list:
- list.append(TimerEntry(timer, 0))
+ list.append(TimerEntryComponent(timer, 0))
for timer in session.nav.RecordTimer.processed_timers:
- list.append(TimerEntry(timer, 1))
+ list.append(TimerEntryComponent(timer, 1))
self["timerlist"] = TimerList(list)
@@ -69,4 +70,5 @@ class TimerEditList(Screen):
})
def openEdit(self):
- self.session.open(TimerEdit, self["timerlist"].getCurrent()[0])
+ self.session.open(TimerEntry, self["timerlist"].getCurrent()[0])
+ #self.session.open(TimerEdit, self["timerlist"].getCurrent()[0])