--- a/Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py Thu Aug 12 10:11:06 2010 +0200 +++ b/Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py Thu Aug 12 16:11:13 2010 +0200 @@ -80,7 +80,7 @@ if self.process is not None and \ self.process.state() != QProcess.NotRunning: self.process.terminate() - QTimer.singleShot(2000, self.process, SLOT('kill()')) + QTimer.singleShot(2000, self.process.kill) self.process.waitForFinished(3000) e.accept() @@ -128,7 +128,7 @@ if self.process is not None and \ self.process.state() != QProcess.NotRunning: self.process.terminate() - QTimer.singleShot(2000, self.process, SLOT('kill()')) + QTimer.singleShot(2000, self.process.kill) self.process.waitForFinished(3000) self.buttonBox.button(QDialogButtonBox.Close).setEnabled(True)