79 """ |
79 """ |
80 yes = EricMessageBox.yesNo( |
80 yes = EricMessageBox.yesNo( |
81 self, |
81 self, |
82 self.tr("Delete Selected Entries"), |
82 self.tr("Delete Selected Entries"), |
83 self.tr( |
83 self.tr( |
84 """Do you really want to delete the selected""" """ history entries?""" |
84 """Do you really want to delete the selected history entries?""" |
85 ), |
85 ), |
86 ) |
86 ) |
87 if yes: |
87 if yes: |
88 for itm in self.historyList.selectedItems(): |
88 for itm in self.historyList.selectedItems(): |
89 row = self.historyList.row(itm) |
89 row = self.historyList.row(itm) |