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("@@") |