eric7/Debugger/StartHistoryEditDialog.py

branch
eric7
changeset 8356
68ec9c3d4de5
parent 8318
962bce857696
child 8358
144a6b854f70
--- 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?"""))

eric ide

mercurial