31 @param msg initial message (string) |
31 @param msg initial message (string) |
32 @param amend flag indicating to amend the HEAD commit (boolean) |
32 @param amend flag indicating to amend the HEAD commit (boolean) |
33 @param commitAll flag indicating to commit all local changes (boolean) |
33 @param commitAll flag indicating to commit all local changes (boolean) |
34 @param parent parent widget (QWidget) |
34 @param parent parent widget (QWidget) |
35 """ |
35 """ |
36 super(GitCommitDialog, self).__init__( |
36 super().__init__( |
37 parent, Qt.WindowFlags(Qt.WindowType.Window)) |
37 parent, Qt.WindowFlags(Qt.WindowType.Window)) |
38 self.setupUi(self) |
38 self.setupUi(self) |
39 |
39 |
40 self.__vcs = vcs |
40 self.__vcs = vcs |
41 |
41 |