22 """ |
22 """ |
23 Constructor |
23 Constructor |
24 |
24 |
25 @param parent reference to the parent widget (QWidget) |
25 @param parent reference to the parent widget (QWidget) |
26 """ |
26 """ |
27 ConfigurationPageBase.__init__(self) |
27 super().__init__() |
28 self.setupUi(self) |
28 self.setupUi(self) |
29 self.setObjectName("Py3FlakesPage") |
29 self.setObjectName("Py3FlakesPage") |
30 |
30 |
31 self.standardButton.setIcon(UI.PixmapCache.getIcon("erict.png")) |
31 self.standardButton.setIcon(UI.PixmapCache.getIcon("erict.png")) |
32 self.highContrastButton.setIcon(UI.PixmapCache.getIcon("erict-hc.png")) |
32 self.highContrastButton.setIcon(UI.PixmapCache.getIcon("erict-hc.png")) |