23 @param bundleHeads list of heads contained in a bundle |
23 @param bundleHeads list of heads contained in a bundle |
24 (list of strings) |
24 (list of strings) |
25 @param branches list of available branch names (list of strings) |
25 @param branches list of available branch names (list of strings) |
26 @param parent reference to the parent widget (QWidget) |
26 @param parent reference to the parent widget (QWidget) |
27 """ |
27 """ |
28 super(GitApplyBundleDataDialog, self).__init__(parent) |
28 super().__init__(parent) |
29 self.setupUi(self) |
29 self.setupUi(self) |
30 |
30 |
31 self.headCombo.addItems(sorted(bundleHeads)) |
31 self.headCombo.addItems(sorted(bundleHeads)) |
32 self.branchCombo.addItems([""] + sorted(branches)) |
32 self.branchCombo.addItems([""] + sorted(branches)) |
33 |
33 |