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