src/eric7/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditPlanEditor.py

branch
eric7
changeset 9413
80c06d472826
parent 9221
bf71ee032bb4
child 9473
3f23dbf37dbe
diff -r 45e7bb09c120 -r 80c06d472826 src/eric7/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditPlanEditor.py
--- 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(), "")
 

eric ide

mercurial