diff -r 45e7bb09c120 -r 80c06d472826 src/eric7/Plugins/PluginWizardQFontDialog.py --- a/src/eric7/Plugins/PluginWizardQFontDialog.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/Plugins/PluginWizardQFontDialog.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 = "QFontDialog Wizard Plugin" author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = UI.Info.VersionOnly +version = Info.VersionOnly className = "FontDialogWizard" packageName = "__core__" shortDescription = "Show the QFontDialog wizard." @@ -106,7 +106,8 @@ @param editor reference to the current editor @return the generated code (string) """ - from WizardPlugins.FontDialogWizard.FontDialogWizardDialog import ( + from eric7.Plugins.WizardPlugins.FontDialogWizard.FontDialogWizardDialog import ( + # __IGNORE_WARNING__ FontDialogWizardDialog, )