src/eric7/PluginManager/PluginUninstallDialog.py

branch
eric7
changeset 9413
80c06d472826
parent 9221
bf71ee032bb4
child 9473
3f23dbf37dbe
--- a/src/eric7/PluginManager/PluginUninstallDialog.py	Tue Oct 18 16:05:20 2022 +0200
+++ b/src/eric7/PluginManager/PluginUninstallDialog.py	Tue Oct 18 16:06:21 2022 +0200
@@ -16,14 +16,14 @@
 from PyQt6.QtCore import pyqtSlot, pyqtSignal, Qt
 from PyQt6.QtWidgets import QWidget, QDialog, QVBoxLayout, QListWidgetItem
 
-from EricWidgets import EricMessageBox
-from EricWidgets.EricMainWindow import EricMainWindow
-from EricWidgets.EricApplication import ericApp
+from eric7.EricWidgets import EricMessageBox
+from eric7.EricWidgets.EricMainWindow import EricMainWindow
+from eric7.EricWidgets.EricApplication import ericApp
 
 from .Ui_PluginUninstallDialog import Ui_PluginUninstallDialog
 
-import Preferences
-import UI.PixmapCache
+from eric7 import Preferences
+from eric7.EricGui import EricPixmapCache
 
 
 class PluginUninstallWidget(QWidget, Ui_PluginUninstallDialog):
@@ -225,7 +225,7 @@
         if not self.__external:
             ui = ericApp().getObject("UserInterface")
             ui.showNotification(
-                UI.PixmapCache.getPixmap("plugin48"),
+                EricPixmapCache.getPixmap("plugin48"),
                 self.tr("Plugin Uninstallation"),
                 self.tr(
                     """<p>The plugin <b>{0}</b> was uninstalled"""

eric ide

mercurial