--- a/src/eric7/HelpViewer/OpenPagesWidget.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/HelpViewer/OpenPagesWidget.py Tue Oct 18 16:06:21 2022 +0200 @@ -11,7 +11,7 @@ from PyQt6.QtGui import QGuiApplication, QClipboard from PyQt6.QtWidgets import QListWidget, QAbstractItemView, QMenu -import UI.PixmapCache +from eric7.EricGui import EricPixmapCache class OpenPagesWidget(QListWidget): @@ -60,12 +60,12 @@ """ self.__menu = QMenu(self) self.__menu.addAction( - UI.PixmapCache.getIcon("tabClose"), + EricPixmapCache.getIcon("tabClose"), self.tr("Close"), self.__contextMenuClose, ) self.closeOthersMenuAct = self.__menu.addAction( - UI.PixmapCache.getIcon("tabCloseOther"), + EricPixmapCache.getIcon("tabCloseOther"), self.tr("Close Others"), self.__contextMenuCloseOthers, )