30 Constructor |
30 Constructor |
31 |
31 |
32 @param vcs reference to the vcs object |
32 @param vcs reference to the vcs object |
33 @param parent parent widget (QWidget) |
33 @param parent parent widget (QWidget) |
34 """ |
34 """ |
35 super(GitDiffGenerator, self).__init__(parent) |
35 super().__init__(parent) |
36 |
36 |
37 self.vcs = vcs |
37 self.vcs = vcs |
38 |
38 |
39 self.__process = E5OverrideCursorProcess() |
39 self.__process = E5OverrideCursorProcess() |
40 self.__process.finished.connect(self.__procFinished) |
40 self.__process.finished.connect(self.__procFinished) |