24 """ |
24 """ |
25 Constructor |
25 Constructor |
26 |
26 |
27 @param configDialog reference to the configuration dialog (ConfigurationDialog) |
27 @param configDialog reference to the configuration dialog (ConfigurationDialog) |
28 """ |
28 """ |
29 ConfigurationPageBase.__init__(self) |
29 super().__init__() |
30 self.setupUi(self) |
30 self.setupUi(self) |
31 self.setObjectName("HelpWebBrowserPage") |
31 self.setObjectName("HelpWebBrowserPage") |
32 |
32 |
33 self.__configDlg = configDialog |
33 self.__configDlg = configDialog |
34 mw = configDialog.parent().parent() |
34 mw = configDialog.parent().parent() |