221 |
221 |
222 self.refreshButton.setEnabled(False) |
222 self.refreshButton.setEnabled(False) |
223 self.start() |
223 self.start() |
224 |
224 |
225 @pyqtSlot(QTreeWidgetItem, int) |
225 @pyqtSlot(QTreeWidgetItem, int) |
226 def on_conflictsList_itemDoubleClicked(self, item, column): |
226 def on_conflictsList_itemDoubleClicked(self, _item, _column): |
227 """ |
227 """ |
228 Private slot to open the double clicked entry. |
228 Private slot to open the double clicked entry. |
229 |
229 |
230 @param item reference to the double clicked item |
230 @param _item reference to the double clicked item (unused) |
231 @type QTreeWidgetItem |
231 @type QTreeWidgetItem |
232 @param column column that was double clicked |
232 @param _column column that was double clicked (unused) |
233 @type int |
233 @type int |
234 """ |
234 """ |
235 self.on_editButton_clicked() |
235 self.on_editButton_clicked() |
236 |
236 |
237 @pyqtSlot() |
237 @pyqtSlot() |