24 @param tagsList list of tags (list of strings) |
24 @param tagsList list of tags (list of strings) |
25 @param branchesList list of branches (list of strings) |
25 @param branchesList list of branches (list of strings) |
26 @param bookmarksList list of bookmarks (list of strings) |
26 @param bookmarksList list of bookmarks (list of strings) |
27 @param parent reference to the parent widget (QWidget) |
27 @param parent reference to the parent widget (QWidget) |
28 """ |
28 """ |
29 QDialog.__init__(self, parent) |
29 super().__init__(parent) |
30 self.setupUi(self) |
30 self.setupUi(self) |
31 |
31 |
32 self.tag1Combo.addItems(sorted(tagsList)) |
32 self.tag1Combo.addItems(sorted(tagsList)) |
33 self.tag2Combo.addItems(sorted(tagsList)) |
33 self.tag2Combo.addItems(sorted(tagsList)) |
34 self.branch1Combo.addItems(["default"] + sorted(branchesList)) |
34 self.branch1Combo.addItems(["default"] + sorted(branchesList)) |