86 |
86 |
87 @param parent reference to the parent widget (QWidget) |
87 @param parent reference to the parent widget (QWidget) |
88 """ |
88 """ |
89 super().__init__(parent) |
89 super().__init__(parent) |
90 self.setupUi(self) |
90 self.setupUi(self) |
|
91 |
|
92 self.excludeMessagesSelectButton.setIcon( |
|
93 UI.PixmapCache.getIcon("select.png")) |
|
94 self.includeMessagesSelectButton.setIcon( |
|
95 UI.PixmapCache.getIcon("select.png")) |
|
96 self.fixIssuesSelectButton.setIcon( |
|
97 UI.PixmapCache.getIcon("select.png")) |
|
98 self.noFixIssuesSelectButton.setIcon( |
|
99 UI.PixmapCache.getIcon("select.png")) |
91 |
100 |
92 self.docTypeComboBox.addItem(self.trUtf8("PEP-257"), "pep257") |
101 self.docTypeComboBox.addItem(self.trUtf8("PEP-257"), "pep257") |
93 self.docTypeComboBox.addItem(self.trUtf8("Eric"), "eric") |
102 self.docTypeComboBox.addItem(self.trUtf8("Eric"), "eric") |
94 |
103 |
95 self.statisticsButton = self.buttonBox.addButton( |
104 self.statisticsButton = self.buttonBox.addButton( |