789 self.cw.buttonBox.rejected.connect(self.close) |
789 self.cw.buttonBox.rejected.connect(self.close) |
790 self.cw.closeAndInstall.connect(self.__startPluginInstall) |
790 self.cw.closeAndInstall.connect(self.__startPluginInstall) |
791 |
791 |
792 def __startPluginInstall(self): |
792 def __startPluginInstall(self): |
793 """ |
793 """ |
794 Private slot to start the eric5 plugin installation dialog. |
794 Private slot to start the eric6 plugin installation dialog. |
795 """ |
795 """ |
796 proc = QProcess() |
796 proc = QProcess() |
797 applPath = os.path.join(getConfig("ericDir"), "eric5_plugininstall.py") |
797 applPath = os.path.join(getConfig("ericDir"), "eric6_plugininstall.py") |
798 |
798 |
799 args = [] |
799 args = [] |
800 args.append(applPath) |
800 args.append(applPath) |
801 args += self.cw.getDownloadedPlugins() |
801 args += self.cw.getDownloadedPlugins() |
802 |
802 |