eric6/Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py

branch
maintenance
changeset 8273
698ae46f40a4
parent 8218
7c09585bd960
equal deleted inserted replaced
8190:fb0ef164f536 8273:698ae46f40a4
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])

eric ide

mercurial