Sat, 05 Feb 2011 19:55:33 +0100
Fixed an issue in the plug-in uninstall dialog.
PluginManager/PluginUninstallDialog.py | file | annotate | diff | comparison | revisions |
--- a/PluginManager/PluginUninstallDialog.py Sat Feb 05 16:32:34 2011 +0100 +++ b/PluginManager/PluginUninstallDialog.py Sat Feb 05 19:55:33 2011 +0100 @@ -174,7 +174,7 @@ self.__layout.addWidget(self.cw) self.resize(size) - self.cw.accepted[()].connect(self.accept) + self.cw.buttonBox.accepted[()].connect(self.accept) self.cw.buttonBox.rejected[()].connect(self.reject) class PluginUninstallWindow(QMainWindow): @@ -193,5 +193,5 @@ self.setCentralWidget(self.cw) self.resize(size) - self.cw.accepted[()].connect(self.close) - self.cw.buttonBox.rejected[()].connect(self.close) \ No newline at end of file + self.cw.buttonBox.accepted[()].connect(self.close) + self.cw.buttonBox.rejected[()].connect(self.close)