--- a/eric6/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py Sun Apr 05 18:17:08 2020 +0200 +++ b/eric6/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py Sat May 02 13:51:07 2020 +0200 @@ -133,9 +133,9 @@ itm = QTreeWidgetItem(self.__lastFileItem) if isWarning: - itm.setIcon(0, UI.PixmapCache.getIcon("warning.png")) + itm.setIcon(0, UI.PixmapCache.getIcon("warning")) else: - itm.setIcon(0, UI.PixmapCache.getIcon("syntaxError.png")) + itm.setIcon(0, UI.PixmapCache.getIcon("syntaxError")) itm.setData(0, Qt.DisplayRole, line) itm.setData(1, Qt.DisplayRole, error) itm.setData(2, Qt.DisplayRole, sourcecode)