diff -r d766de2ccbc7 -r 608a9c14f4c9 SqlBrowser/SqlBrowser.py --- a/SqlBrowser/SqlBrowser.py Thu Aug 05 08:35:30 2010 +0200 +++ b/SqlBrowser/SqlBrowser.py Thu Aug 05 08:39:56 2010 +0200 @@ -106,7 +106,7 @@ """<b>Quit</b>""" """<p>Quit the SQL browser.</p>""" )) - self.exitAct.triggered.connect(qApp.closeAllWindows) + self.exitAct.triggered[()].connect(qApp.closeAllWindows) self.aboutAct = E5Action(self.trUtf8('About'), self.trUtf8('&About'), @@ -176,4 +176,4 @@ """ Private slot to show info about Qt. """ - QMessageBox.aboutQt(self, self.trUtf8("SQL Browser")) + QMessageBox.aboutQt(self, self.trUtf8("SQL Browser")) \ No newline at end of file