diff -r 45e7bb09c120 -r 80c06d472826 src/eric7/Project/IdlCompilerOptionsDialog.py --- a/src/eric7/Project/IdlCompilerOptionsDialog.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/Project/IdlCompilerOptionsDialog.py Tue Oct 18 16:06:21 2022 +0200 @@ -12,10 +12,10 @@ from .Ui_IdlCompilerOptionsDialog import Ui_IdlCompilerOptionsDialog -import UI.PixmapCache +from eric7.EricGui import EricPixmapCache -from EricWidgets import EricPathPickerDialog -from EricWidgets.EricPathPicker import EricPathPickerModes +from eric7.EricWidgets import EricPathPickerDialog +from eric7.EricWidgets.EricPathPicker import EricPathPickerModes from .IdlCompilerDefineNameDialog import IdlCompilerDefineNameDialog @@ -53,17 +53,17 @@ self.__project = project - self.idAddButton.setIcon(UI.PixmapCache.getIcon("plus")) - self.idDeleteButton.setIcon(UI.PixmapCache.getIcon("minus")) - self.idEditButton.setIcon(UI.PixmapCache.getIcon("edit")) + self.idAddButton.setIcon(EricPixmapCache.getIcon("plus")) + self.idDeleteButton.setIcon(EricPixmapCache.getIcon("minus")) + self.idEditButton.setIcon(EricPixmapCache.getIcon("edit")) - self.dnAddButton.setIcon(UI.PixmapCache.getIcon("plus")) - self.dnDeleteButton.setIcon(UI.PixmapCache.getIcon("minus")) - self.dnEditButton.setIcon(UI.PixmapCache.getIcon("edit")) + self.dnAddButton.setIcon(EricPixmapCache.getIcon("plus")) + self.dnDeleteButton.setIcon(EricPixmapCache.getIcon("minus")) + self.dnEditButton.setIcon(EricPixmapCache.getIcon("edit")) - self.unAddButton.setIcon(UI.PixmapCache.getIcon("plus")) - self.unDeleteButton.setIcon(UI.PixmapCache.getIcon("minus")) - self.unEditButton.setIcon(UI.PixmapCache.getIcon("edit")) + self.unAddButton.setIcon(EricPixmapCache.getIcon("plus")) + self.unDeleteButton.setIcon(EricPixmapCache.getIcon("minus")) + self.unEditButton.setIcon(EricPixmapCache.getIcon("edit")) self.__populateIncludeDirectoriesList(includeDirectories) self.__populateDefineNamesList(definedNames)