--- a/src/eric7/Network/IRC/IrcNetworkEditDialog.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/Network/IRC/IrcNetworkEditDialog.py Tue Oct 18 16:06:21 2022 +0200 @@ -12,11 +12,11 @@ from PyQt6.QtCore import pyqtSlot from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QTreeWidgetItem -from EricWidgets import EricMessageBox +from eric7.EricWidgets import EricMessageBox from .Ui_IrcNetworkEditDialog import Ui_IrcNetworkEditDialog -import UI.PixmapCache +from eric7.EricGui import EricPixmapCache class IrcNetworkEditDialog(QDialog, Ui_IrcNetworkEditDialog): @@ -38,11 +38,11 @@ self.__manager = manager - self.editIdentitiesButton.setIcon(UI.PixmapCache.getIcon("ircConfigure")) - self.editServerButton.setIcon(UI.PixmapCache.getIcon("ircConfigure")) - self.editChannelButton.setIcon(UI.PixmapCache.getIcon("ircConfigure")) - self.addChannelButton.setIcon(UI.PixmapCache.getIcon("plus")) - self.deleteChannelButton.setIcon(UI.PixmapCache.getIcon("minus")) + self.editIdentitiesButton.setIcon(EricPixmapCache.getIcon("ircConfigure")) + self.editServerButton.setIcon(EricPixmapCache.getIcon("ircConfigure")) + self.editChannelButton.setIcon(EricPixmapCache.getIcon("ircConfigure")) + self.addChannelButton.setIcon(EricPixmapCache.getIcon("plus")) + self.deleteChannelButton.setIcon(EricPixmapCache.getIcon("minus")) self.__okButton = self.buttonBox.button(QDialogButtonBox.StandardButton.Ok)