104 self.__started = False |
104 self.__started = False |
105 self.__lastRev = 0 |
105 self.__lastRev = 0 |
106 |
106 |
107 def closeEvent(self, e): |
107 def closeEvent(self, e): |
108 """ |
108 """ |
109 Private slot implementing a close event handler. |
109 Protected slot implementing a close event handler. |
110 |
110 |
111 @param e close event (QCloseEvent) |
111 @param e close event (QCloseEvent) |
112 """ |
112 """ |
113 if self.process is not None and \ |
113 if self.process is not None and \ |
114 self.process.state() != QProcess.NotRunning: |
114 self.process.state() != QProcess.NotRunning: |