52 @pyqtSlot(QListWidgetItem) |
52 @pyqtSlot(QListWidgetItem) |
53 def on_historyList_itemDoubleClicked(self, item): |
53 def on_historyList_itemDoubleClicked(self, item): |
54 """ |
54 """ |
55 Private slot to handle a double click of an item. |
55 Private slot to handle a double click of an item. |
56 |
56 |
57 @param item reference to the item that was double clicked (QListWidgetItem) |
57 @param item reference to the item that was double clicked |
|
58 (QListWidgetItem) |
58 """ |
59 """ |
59 self.on_executeButton_clicked() |
60 self.on_executeButton_clicked() |
60 |
61 |
61 @pyqtSlot() |
62 @pyqtSlot() |
62 def on_deleteButton_clicked(self): |
63 def on_deleteButton_clicked(self): |