71 r"""\s*([0-9]+)\s+(\w+)\s+([0-9]+)\s""" |
71 r"""\s*([0-9]+)\s+(\w+)\s+([0-9]+)\s""" |
72 r"""((?:\w+\s+\d+|[0-9.]+\s+\w+)\s+[0-9:]+)\s+(.+)\s*""") |
72 r"""((?:\w+\s+\d+|[0-9.]+\s+\w+)\s+[0-9:]+)\s+(.+)\s*""") |
73 |
73 |
74 def closeEvent(self, e): |
74 def closeEvent(self, e): |
75 """ |
75 """ |
76 Private slot implementing a close event handler. |
76 Protected slot implementing a close event handler. |
77 |
77 |
78 @param e close event (QCloseEvent) |
78 @param e close event (QCloseEvent) |
79 """ |
79 """ |
80 if self.process is not None and \ |
80 if self.process is not None and \ |
81 self.process.state() != QProcess.NotRunning: |
81 self.process.state() != QProcess.NotRunning: |