aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-03-02 03:53:24 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-03-02 03:53:24 +0000
commitc3c343dab84378de4e68065497e0115a422bf045 (patch)
treeea003a63bff1878bb843f9d15fef4972f652ec80 /lib/python/Screens
parenta4c65dae04761e9e5da358e9b4a1159436a6f18b (diff)
downloadenigma2-c3c343dab84378de4e68065497e0115a422bf045.tar.gz
enigma2-c3c343dab84378de4e68065497e0115a422bf045.zip
setTitle is now a Screen method
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/PluginBrowser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/PluginBrowser.py b/lib/python/Screens/PluginBrowser.py
index 46661ca1..16f3aadd 100644
--- a/lib/python/Screens/PluginBrowser.py
+++ b/lib/python/Screens/PluginBrowser.py
@@ -68,7 +68,7 @@ class PluginDownloadBrowser(Screen):
self.container.appClosed.get().append(self.runFinished)
self.container.dataAvail.get().append(self.dataAvail)
self.onLayoutFinish.append(self.startRun)
- self.onShown.append(self.setTitle)
+ self.onShown.append(self.setWindowTitle)
self.list = []
self["list"] = PluginList(self.list)
@@ -108,7 +108,7 @@ class PluginDownloadBrowser(Screen):
elif self.type == self.REMOVE:
self.session.openWithCallback(self.installFinished, Console, ["ipkg remove " + "enigma2-plugin-" + self["list"].l.getCurrentSelection()[0].name])
- def setTitle(self):
+ def setWindowTitle(self):
if self.type == self.DOWNLOAD:
self.setTitle(_("Downloadable new plugins"))
elif self.type == self.REMOVE: