30 self.setModal(True) |
30 self.setModal(True) |
31 |
31 |
32 self.exceptionList.addItems(excList) |
32 self.exceptionList.addItems(excList) |
33 |
33 |
34 if ignore: |
34 if ignore: |
35 self.setWindowTitle(self.trUtf8("Ignored Exceptions")) |
35 self.setWindowTitle(self.tr("Ignored Exceptions")) |
36 self.exceptionList.setToolTip( |
36 self.exceptionList.setToolTip( |
37 self.trUtf8("List of ignored exceptions")) |
37 self.tr("List of ignored exceptions")) |
38 |
38 |
39 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
39 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
40 |
40 |
41 @pyqtSlot() |
41 @pyqtSlot() |
42 def on_exceptionList_itemSelectionChanged(self): |
42 def on_exceptionList_itemSelectionChanged(self): |