Debugger/ExceptionsFilterDialog.py

changeset 4554
f3428ddd577c
parent 4021
195a471c327b
child 4631
5c1a96925da4
equal deleted inserted replaced
4553:a6b2acd1a355 4554:f3428ddd577c
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 """

eric ide

mercurial