diff -r 45e7bb09c120 -r 80c06d472826 src/eric7/UI/LogView.py --- a/src/eric7/UI/LogView.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/UI/LogView.py Tue Oct 18 16:06:21 2022 +0200 @@ -18,11 +18,10 @@ QSizePolicy, ) -from EricWidgets.EricApplication import ericApp +from eric7.EricWidgets.EricApplication import ericApp -import UI.PixmapCache -import Preferences -import Utilities +from eric7.EricGui import EricPixmapCache +from eric7 import Preferences, Utilities class LogViewer(QWidget): @@ -39,7 +38,7 @@ """ super().__init__(parent) - self.setWindowIcon(UI.PixmapCache.getIcon("eric")) + self.setWindowIcon(EricPixmapCache.getIcon("eric")) self.__ui = ui