59 enabled = False |
59 enabled = False |
60 |
60 |
61 self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enabled) |
61 self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enabled) |
62 |
62 |
63 @pyqtSlot(str) |
63 @pyqtSlot(str) |
64 def on_patchFilePicker_textChanged(self, txt): |
64 def on_patchFilePicker_textChanged(self, _txt): |
65 """ |
65 """ |
66 Private slot to react on changes of the patch file edit. |
66 Private slot to react on changes of the patch file edit. |
67 |
67 |
68 @param txt contents of the line edit |
68 @param _txt contents of the line edit (unused) |
69 @type str |
69 @type str |
70 """ |
70 """ |
71 self.__updateOK() |
71 self.__updateOK() |
72 |
72 |
73 def getParameters(self): |
73 def getParameters(self): |