77 if button == self.buttonBox.button(QDialogButtonBox.Close): |
77 if button == self.buttonBox.button(QDialogButtonBox.Close): |
78 self.close() |
78 self.close() |
79 elif button == self.buttonBox.button(QDialogButtonBox.Cancel): |
79 elif button == self.buttonBox.button(QDialogButtonBox.Cancel): |
80 self.vcs.getClient().cancel() |
80 self.vcs.getClient().cancel() |
81 |
81 |
|
82 # TODO: workingDir is obsolete |
82 def startProcess(self, args, workingDir=None, showArgs=True, |
83 def startProcess(self, args, workingDir=None, showArgs=True, |
83 environment=None): |
84 environment=None): |
84 """ |
85 """ |
85 Public slot used to start the process. |
86 Public slot used to start the process. |
86 |
87 |