Fixed an issue in the plug-in uninstall dialog.

Sat, 05 Feb 2011 19:55:33 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 05 Feb 2011 19:55:33 +0100
changeset 881
ff23d907f87b
parent 880
52ed20236a1c
child 882
34b86be88bf0

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)

eric ide

mercurial