diff -r 45e7bb09c120 -r 80c06d472826 src/eric7/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py --- a/src/eric7/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py Tue Oct 18 16:06:21 2022 +0200 @@ -12,13 +12,13 @@ from PyQt6.QtCore import pyqtSlot from PyQt6.QtWidgets import QDialog, QDialogButtonBox -from EricWidgets.EricApplication import ericApp -from EricWidgets import EricMessageBox +from eric7.EricWidgets.EricApplication import ericApp +from eric7.EricWidgets import EricMessageBox from .Ui_DotDesktopWizardDialog import Ui_DotDesktopWizardDialog -import Utilities -import UI.PixmapCache +from eric7 import Utilities +from eric7.EricGui import EricPixmapCache class DotDesktopWizardDialog(QDialog, Ui_DotDesktopWizardDialog): @@ -244,7 +244,7 @@ projectOpen = ericApp().getObject("Project").isOpen() self.projectButton.setEnabled(projectOpen) - icon = UI.PixmapCache.getIcon("listSelection") + icon = EricPixmapCache.getIcon("listSelection") self.categoriesButton.setIcon(icon) self.onlyShowButton.setIcon(icon) self.notShowButton.setIcon(icon)