51 self.vcs = vcs |
51 self.vcs = vcs |
52 self.vcs.committed.connect(self.__committed) |
52 self.vcs.committed.connect(self.__committed) |
53 |
53 |
54 def closeEvent(self, e): |
54 def closeEvent(self, e): |
55 """ |
55 """ |
56 Private slot implementing a close event handler. |
56 Protected slot implementing a close event handler. |
57 |
57 |
58 @param e close event (QCloseEvent) |
58 @param e close event (QCloseEvent) |
59 """ |
59 """ |
60 if self.process is not None and \ |
60 if self.process is not None and \ |
61 self.process.state() != QProcess.NotRunning: |
61 self.process.state() != QProcess.NotRunning: |