27 Constructor |
27 Constructor |
28 |
28 |
29 @param dictionary with the statistical data |
29 @param dictionary with the statistical data |
30 @param parent reference to the parent widget (QWidget) |
30 @param parent reference to the parent widget (QWidget) |
31 """ |
31 """ |
32 QDialog.__init__(self, parent) |
32 super().__init__(parent) |
33 self.setupUi(self) |
33 self.setupUi(self) |
34 |
34 |
35 stats = statistics.copy() |
35 stats = statistics.copy() |
36 filesCount = stats["_FilesCount"] |
36 filesCount = stats["_FilesCount"] |
37 filesIssues = stats["_FilesIssues"] |
37 filesIssues = stats["_FilesIssues"] |