src/eric7/UI/FindLocationWidget.py

branch
eric7
changeset 9413
80c06d472826
parent 9221
bf71ee032bb4
child 9473
3f23dbf37dbe
diff -r 45e7bb09c120 -r 80c06d472826 src/eric7/UI/FindLocationWidget.py
--- a/src/eric7/UI/FindLocationWidget.py	Tue Oct 18 16:05:20 2022 +0200
+++ b/src/eric7/UI/FindLocationWidget.py	Tue Oct 18 16:06:21 2022 +0200
@@ -22,13 +22,13 @@
     QVBoxLayout,
 )
 
-from EricWidgets.EricPathPicker import EricPathPickerModes
+from eric7.EricWidgets.EricPathPicker import EricPathPickerModes
 
 from .Ui_FindLocationWidget import Ui_FindLocationWidget
 
-import UI.PixmapCache
-from Utilities import direntries
-import Utilities
+from eric7.EricGui import EricPixmapCache
+from eric7.Utilities import direntries
+from eric7 import Utilities
 
 
 class FindLocationWidget(QWidget, Ui_FindLocationWidget):
@@ -75,21 +75,21 @@
         self.fileList.headerItem().setText(self.fileList.columnCount(), "")
 
         self.stopButton.setEnabled(False)
-        self.stopButton.setIcon(UI.PixmapCache.getIcon("stopLoading"))
+        self.stopButton.setIcon(EricPixmapCache.getIcon("stopLoading"))
         self.stopButton.setAutoDefault(False)
         self.stopButton.clicked.connect(self.__stopSearch)
 
-        self.findButton.setIcon(UI.PixmapCache.getIcon("find"))
+        self.findButton.setIcon(EricPixmapCache.getIcon("find"))
         self.findButton.setAutoDefault(False)
         self.findButton.clicked.connect(self.__searchFile)
 
         self.clearButton.setEnabled(False)
-        self.clearButton.setIcon(UI.PixmapCache.getIcon("clear"))
+        self.clearButton.setIcon(EricPixmapCache.getIcon("clear"))
         self.clearButton.setAutoDefault(False)
         self.clearButton.clicked.connect(self.__clearResults)
 
         self.openButton.setEnabled(False)
-        self.openButton.setIcon(UI.PixmapCache.getIcon("open"))
+        self.openButton.setIcon(EricPixmapCache.getIcon("open"))
         self.openButton.setAutoDefault(False)
         self.openButton.clicked.connect(self.__openFile)
 

eric ide

mercurial