28 Constructor |
28 Constructor |
29 |
29 |
30 @param vcs reference to the VCS object (Git) |
30 @param vcs reference to the VCS object (Git) |
31 @param parent reference to the parent widget (QWidget) |
31 @param parent reference to the parent widget (QWidget) |
32 """ |
32 """ |
33 super(GitPatchStatisticsDialog, self).__init__(parent) |
33 super().__init__(parent) |
34 self.setupUi(self) |
34 self.setupUi(self) |
35 self.setWindowFlags(Qt.WindowType.Window) |
35 self.setWindowFlags(Qt.WindowType.Window) |
36 |
36 |
37 self.__vcs = vcs |
37 self.__vcs = vcs |
38 |
38 |