153 self.sizeComboBox.setCurrentText(selectedSize) |
153 self.sizeComboBox.setCurrentText(selectedSize) |
154 |
154 |
155 self.__updateOkButton() |
155 self.__updateOkButton() |
156 |
156 |
157 @pyqtSlot(str) |
157 @pyqtSlot(str) |
158 def on_sizeComboBox_currentTextChanged(self, size): |
158 def on_sizeComboBox_currentTextChanged(self, _size): |
159 """ |
159 """ |
160 Private slot handling a change of the selected firmware size. |
160 Private slot handling a change of the selected firmware size. |
161 |
161 |
162 @param size selected size text |
162 @param _size selected size text (unused) |
163 @type str |
163 @type str |
164 """ |
164 """ |
165 self.__updateOkButton() |
165 self.__updateOkButton() |
166 |
166 |
167 @pyqtSlot(str) |
167 @pyqtSlot(str) |
168 def on_firmwarePicker_textChanged(self, firmware): |
168 def on_firmwarePicker_textChanged(self, _firmware): |
169 """ |
169 """ |
170 Private slot handling a change of the firmware path. |
170 Private slot handling a change of the firmware path. |
171 |
171 |
172 @param firmware path to the firmware |
172 @param _firmware path to the firmware (unused) |
173 @type str |
173 @type str |
174 """ |
174 """ |
175 self.__updateOkButton() |
175 self.__updateOkButton() |
176 |
176 |
177 def getData(self): |
177 def getData(self): |