Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesFoldDialog.py

changeset 5282
898b0dda21e1
parent 4631
5c1a96925da4
child 5389
9b1c800daff3
equal deleted inserted replaced
5280:929f7984ba8b 5282:898b0dda21e1
29 @param parent reference to the parent widget (QWidget) 29 @param parent reference to the parent widget (QWidget)
30 """ 30 """
31 super(HgQueuesFoldDialog, self).__init__(parent) 31 super(HgQueuesFoldDialog, self).__init__(parent)
32 self.setupUi(self) 32 self.setupUi(self)
33 33
34 self.addButton.setIcon(UI.PixmapCache.getIcon("1downarrow.png")) 34 self.addButton.setIcon(UI.PixmapCache.getIcon("plus.png"))
35 self.removeButton.setIcon(UI.PixmapCache.getIcon("1uparrow.png")) 35 self.removeButton.setIcon(UI.PixmapCache.getIcon("minus.png"))
36 self.upButton.setIcon(UI.PixmapCache.getIcon("1uparrow.png")) 36 self.upButton.setIcon(UI.PixmapCache.getIcon("1uparrow.png"))
37 self.downButton.setIcon(UI.PixmapCache.getIcon("1downarrow.png")) 37 self.downButton.setIcon(UI.PixmapCache.getIcon("1downarrow.png"))
38 38
39 for patch in patchesList: 39 for patch in patchesList:
40 name, summary = patch.split("@@") 40 name, summary = patch.split("@@")

eric ide

mercurial