26 @param branchesList list of branches (list of strings) |
26 @param branchesList list of branches (list of strings) |
27 @param currentBranch name of the current branch (string) |
27 @param currentBranch name of the current branch (string) |
28 @param remoteBranchesList list of remote branches (list of strings) |
28 @param remoteBranchesList list of remote branches (list of strings) |
29 @param parent reference to the parent widget (QWidget) |
29 @param parent reference to the parent widget (QWidget) |
30 """ |
30 """ |
31 super(GitMergeDialog, self).__init__(parent) |
31 super().__init__(parent) |
32 self.setupUi(self) |
32 self.setupUi(self) |
33 |
33 |
34 self.buttonBox.button( |
34 self.buttonBox.button( |
35 QDialogButtonBox.StandardButton.Ok).setEnabled(False) |
35 QDialogButtonBox.StandardButton.Ok).setEnabled(False) |
36 |
36 |