259 ) |
259 ) |
260 self.summaryList.header().setSectionResizeMode( |
260 self.summaryList.header().setSectionResizeMode( |
261 QHeaderView.ResizeMode.Interactive |
261 QHeaderView.ResizeMode.Interactive |
262 ) |
262 ) |
263 |
263 |
264 def closeEvent(self, evt): |
264 def closeEvent(self, _evt): |
265 """ |
265 """ |
266 Protected method to handle the close event. |
266 Protected method to handle the close event. |
267 |
267 |
268 @param evt reference to the close event |
268 @param _evt reference to the close event (unused) |
269 @type QCloseEvent |
269 @type QCloseEvent |
270 """ |
270 """ |
271 self.cancelled = True |
271 self.cancelled = True |
272 # The rest is done by the start() method. |
272 # The rest is done by the start() method. |
273 |
273 |