diff -r 8a7677a63c8d -r 68ec9c3d4de5 eric7/Preferences/ConfigurationPages/EditorKeywordsPage.py --- a/eric7/Preferences/ConfigurationPages/EditorKeywordsPage.py Sat May 22 17:01:51 2021 +0200 +++ b/eric7/Preferences/ConfigurationPages/EditorKeywordsPage.py Sat May 22 18:51:46 2021 +0200 @@ -9,7 +9,7 @@ from PyQt6.QtCore import pyqtSlot -from E5Gui import E5MessageBox +from E5Gui import EricMessageBox from .ConfigurationPageBase import ConfigurationPageBase from .Ui_EditorKeywordsPage import Ui_EditorKeywordsPage @@ -171,7 +171,7 @@ Private slot to set the current keyword set to default values. """ ok = ( - E5MessageBox.yesNo( + EricMessageBox.yesNo( self, self.tr("Reset to Default"), self.tr("Shall the current keyword set really be reset to" @@ -194,7 +194,7 @@ Private slot to set all keyword sets of the current language to default values. """ - ok = E5MessageBox.yesNo( + ok = EricMessageBox.yesNo( self, self.tr("Reset All to Default"), self.tr("Shall all keyword sets of the current language really be"