29 @param rootDir root of the directory tree (string) |
29 @param rootDir root of the directory tree (string) |
30 @param patchCheckData tuple of data as returned by the |
30 @param patchCheckData tuple of data as returned by the |
31 getData() method |
31 getData() method |
32 @param parent reference to the parent widget (QWidget) |
32 @param parent reference to the parent widget (QWidget) |
33 """ |
33 """ |
34 super(GitPatchFilesDialog, self).__init__(parent) |
34 super().__init__(parent) |
35 self.setupUi(self) |
35 self.setupUi(self) |
36 |
36 |
37 self.__rootDir = rootDir |
37 self.__rootDir = rootDir |
38 if patchCheckData is not None: |
38 if patchCheckData is not None: |
39 self.patchFilesList.addItems(patchCheckData[0]) |
39 self.patchFilesList.addItems(patchCheckData[0]) |