UI/UserInterface.py

changeset 3116
ee0a183cec81
parent 3113
2780e230f129
child 3142
55030c09e142
child 3160
209a07d7e401
diff -r 6815cfbbe813 -r ee0a183cec81 UI/UserInterface.py
--- a/UI/UserInterface.py	Fri Nov 29 18:49:39 2013 +0100
+++ b/UI/UserInterface.py	Fri Nov 29 18:55:25 2013 +0100
@@ -2179,7 +2179,7 @@
             """<p>This opens a dialog, that shows a list of plugins """
             """available on the Internet.</p>"""
         ))
-        self.pluginRepoAct.triggered[()].connect(self.__showPluginsAvailable)
+        self.pluginRepoAct.triggered[()].connect(self.showPluginsAvailable)
         self.actions.append(self.pluginRepoAct)
         
         # initialize viewmanager actions
@@ -5601,9 +5601,9 @@
         dlg = PluginUninstallDialog(self.pluginManager, self)
         dlg.exec_()
         
-    def __showPluginsAvailable(self):
-        """
-        Private slot to show the plugins available for download.
+    def showPluginsAvailable(self):
+        """
+        Public slot to show the plugins available for download.
         """
         from PluginManager.PluginRepositoryDialog import PluginRepositoryDialog
         dlg = PluginRepositoryDialog(self)

eric ide

mercurial