--- 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)