diff -r 1358e9d67a1c -r 88261c96484b eric6/Project/IdlCompilerOptionsDialog.py --- a/eric6/Project/IdlCompilerOptionsDialog.py Sun Apr 12 18:46:08 2020 +0200 +++ b/eric6/Project/IdlCompilerOptionsDialog.py Sun Apr 12 19:07:49 2020 +0200 @@ -47,17 +47,17 @@ self.__project = project - self.idAddButton.setIcon(UI.PixmapCache.getIcon("plus.png")) - self.idDeleteButton.setIcon(UI.PixmapCache.getIcon("minus.png")) - self.idEditButton.setIcon(UI.PixmapCache.getIcon("edit.png")) + self.idAddButton.setIcon(UI.PixmapCache.getIcon("plus")) + self.idDeleteButton.setIcon(UI.PixmapCache.getIcon("minus")) + self.idEditButton.setIcon(UI.PixmapCache.getIcon("edit")) - self.dnAddButton.setIcon(UI.PixmapCache.getIcon("plus.png")) - self.dnDeleteButton.setIcon(UI.PixmapCache.getIcon("minus.png")) - self.dnEditButton.setIcon(UI.PixmapCache.getIcon("edit.png")) + self.dnAddButton.setIcon(UI.PixmapCache.getIcon("plus")) + self.dnDeleteButton.setIcon(UI.PixmapCache.getIcon("minus")) + self.dnEditButton.setIcon(UI.PixmapCache.getIcon("edit")) - self.unAddButton.setIcon(UI.PixmapCache.getIcon("plus.png")) - self.unDeleteButton.setIcon(UI.PixmapCache.getIcon("minus.png")) - self.unEditButton.setIcon(UI.PixmapCache.getIcon("edit.png")) + self.unAddButton.setIcon(UI.PixmapCache.getIcon("plus")) + self.unDeleteButton.setIcon(UI.PixmapCache.getIcon("minus")) + self.unEditButton.setIcon(UI.PixmapCache.getIcon("edit")) self.__populateIncludeDirectoriesList(includeDirectories) self.__populateDefineNamesList(definedNames)