60 def on_deleteAllButton_clicked(self): |
60 def on_deleteAllButton_clicked(self): |
61 """ |
61 """ |
62 Private slot to delete all exceptions of the listbox. |
62 Private slot to delete all exceptions of the listbox. |
63 """ |
63 """ |
64 while self.exceptionList.count() > 0: |
64 while self.exceptionList.count() > 0: |
65 itm = self.exceptionList.takeItem(0) |
65 itm = self.exceptionList.takeItem(0) # __IGNORE_WARNING__ |
66 del itm |
66 del itm |
67 |
67 |
68 @pyqtSlot() |
68 @pyqtSlot() |
69 def on_addButton_clicked(self): |
69 def on_addButton_clicked(self): |
70 """ |
70 """ |