--- a/src/eric7/Plugins/PluginWizardQMessageBox.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/Plugins/PluginWizardQMessageBox.py Tue Oct 18 16:06:21 2022 +0200 @@ -10,18 +10,18 @@ from PyQt6.QtCore import QObject from PyQt6.QtWidgets import QDialog -from EricWidgets.EricApplication import ericApp -from EricGui.EricAction import EricAction -from EricWidgets import EricMessageBox +from eric7.EricWidgets.EricApplication import ericApp +from eric7.EricGui.EricAction import EricAction +from eric7.EricWidgets import EricMessageBox -import UI.Info +from eric7.UI import Info # Start-Of-Header name = "QMessageBox Wizard Plugin" author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = UI.Info.VersionOnly +version = Info.VersionOnly className = "MessageBoxWizard" packageName = "__core__" shortDescription = "Show the QMessageBox wizard." @@ -106,7 +106,8 @@ @param editor reference to the current editor @return the generated code (string) """ - from WizardPlugins.MessageBoxWizard.MessageBoxWizardDialog import ( + from eric7.Plugins.WizardPlugins.MessageBoxWizard.MessageBoxWizardDialog import ( + # __IGNORE_WARNING__ MessageBoxWizardDialog, )