--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditPlanEditor.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditPlanEditor.py Tue Oct 18 16:06:21 2022 +0200 @@ -10,11 +10,11 @@ from PyQt6.QtCore import pyqtSlot, QCoreApplication from PyQt6.QtWidgets import QDialog, QTreeWidgetItem, QComboBox -from EricWidgets import EricMessageBox +from eric7.EricWidgets import EricMessageBox -from Ui_HgHisteditPlanEditor import Ui_HgHisteditPlanEditor +from eric7.UI_HgHisteditPlanEditor import Ui_HgHisteditPlanEditor -import UI.PixmapCache +from eric7.EricGui import EricPixmapCache class HgHisteditPlanActionComboBox(QComboBox): @@ -88,8 +88,8 @@ super().__init__(parent) self.setupUi(self) - self.upButton.setIcon(UI.PixmapCache.getIcon("1uparrow")) - self.downButton.setIcon(UI.PixmapCache.getIcon("1downarrow")) + self.upButton.setIcon(EricPixmapCache.getIcon("1uparrow")) + self.downButton.setIcon(EricPixmapCache.getIcon("1downarrow")) self.planTreeWidget.headerItem().setText(self.planTreeWidget.columnCount(), "")