26 """ |
26 """ |
27 def __init__(self): |
27 def __init__(self): |
28 """ |
28 """ |
29 Constructor |
29 Constructor |
30 """ |
30 """ |
31 ConfigurationPageBase.__init__(self) |
31 super().__init__() |
32 self.setupUi(self) |
32 self.setupUi(self) |
33 self.setObjectName("HelpViewersPage") |
33 self.setObjectName("HelpViewersPage") |
34 |
34 |
35 self.helpViewerGroup = QButtonGroup() |
35 self.helpViewerGroup = QButtonGroup() |
36 self.helpViewerGroup.addButton(self.helpBrowserButton) |
36 self.helpViewerGroup.addButton(self.helpBrowserButton) |