From 7c531362f5e50a36fa2ca8026f87b95d04807673 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Tue, 22 Nov 2005 14:24:03 +0000 Subject: fix fix --- lib/python/Screens/ChannelSelection.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/python/Screens/ChannelSelection.py') diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index d3921306..85801861 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -158,7 +158,7 @@ class ChannelSelection(Screen): self["actions"] = ChannelActionMap(["ChannelSelectActions", "OkCancelActions", "ContextMenuActions"], { - "cancel": self.doClose, + "cancel": self.cancel, "ok": self.channelSelected, "mark": self.doMark, "contextMenu": self.doContext, @@ -375,7 +375,7 @@ class ChannelSelection(Screen): config.tv.lastservice.value = refstr config.tv.lastservice.save() - def doClose(self): + def cancel(self): self.close() class SimpleChannelSelection(ChannelSelection): @@ -395,6 +395,6 @@ class SimpleChannelSelection(ChannelSelection): def doContext(self): # don't show context menu pass - def doClose(self): + def cancel(self): self.close(None) \ No newline at end of file -- cgit v1.2.3