--- a/eric7/Debugger/StartHistoryEditDialog.py Sat May 22 17:01:51 2021 +0200 +++ b/eric7/Debugger/StartHistoryEditDialog.py Sat May 22 18:51:46 2021 +0200 @@ -10,7 +10,7 @@ from PyQt6.QtCore import pyqtSlot, Qt from PyQt6.QtWidgets import QDialog, QInputDialog, QLineEdit -from E5Gui import E5MessageBox +from E5Gui import EricMessageBox from .Ui_StartHistoryEditDialog import Ui_StartHistoryEditDialog @@ -75,7 +75,7 @@ """ Private slot to delete the selected entries. """ - yes = E5MessageBox.yesNo( + yes = EricMessageBox.yesNo( self, self.tr("Delete Selected Entries"), self.tr("""Do you really want to delete the selected""" @@ -91,7 +91,7 @@ """ Private slot to delete all entries. """ - yes = E5MessageBox.yesNo( + yes = EricMessageBox.yesNo( self, self.tr("Delete All Entries"), self.tr("""Do you really want to delete the shown history?"""))