eric6/Project/IdlCompilerOptionsDialog.py

changeset 7533
88261c96484b
parent 7360
9190402e4505
child 7759
51aa6c6b66f7
equal deleted inserted replaced
7532:1358e9d67a1c 7533:88261c96484b
45 super(IdlCompilerOptionsDialog, self).__init__(parent) 45 super(IdlCompilerOptionsDialog, self).__init__(parent)
46 self.setupUi(self) 46 self.setupUi(self)
47 47
48 self.__project = project 48 self.__project = project
49 49
50 self.idAddButton.setIcon(UI.PixmapCache.getIcon("plus.png")) 50 self.idAddButton.setIcon(UI.PixmapCache.getIcon("plus"))
51 self.idDeleteButton.setIcon(UI.PixmapCache.getIcon("minus.png")) 51 self.idDeleteButton.setIcon(UI.PixmapCache.getIcon("minus"))
52 self.idEditButton.setIcon(UI.PixmapCache.getIcon("edit.png")) 52 self.idEditButton.setIcon(UI.PixmapCache.getIcon("edit"))
53 53
54 self.dnAddButton.setIcon(UI.PixmapCache.getIcon("plus.png")) 54 self.dnAddButton.setIcon(UI.PixmapCache.getIcon("plus"))
55 self.dnDeleteButton.setIcon(UI.PixmapCache.getIcon("minus.png")) 55 self.dnDeleteButton.setIcon(UI.PixmapCache.getIcon("minus"))
56 self.dnEditButton.setIcon(UI.PixmapCache.getIcon("edit.png")) 56 self.dnEditButton.setIcon(UI.PixmapCache.getIcon("edit"))
57 57
58 self.unAddButton.setIcon(UI.PixmapCache.getIcon("plus.png")) 58 self.unAddButton.setIcon(UI.PixmapCache.getIcon("plus"))
59 self.unDeleteButton.setIcon(UI.PixmapCache.getIcon("minus.png")) 59 self.unDeleteButton.setIcon(UI.PixmapCache.getIcon("minus"))
60 self.unEditButton.setIcon(UI.PixmapCache.getIcon("edit.png")) 60 self.unEditButton.setIcon(UI.PixmapCache.getIcon("edit"))
61 61
62 self.__populateIncludeDirectoriesList(includeDirectories) 62 self.__populateIncludeDirectoriesList(includeDirectories)
63 self.__populateDefineNamesList(definedNames) 63 self.__populateDefineNamesList(definedNames)
64 self.unList.addItems(undefinedNames) 64 self.unList.addItems(undefinedNames)
65 65

eric ide

mercurial