--- a/src/eric7/Preferences/ConfigurationPages/WebBrowserPage.py Wed Dec 20 11:06:38 2023 +0100 +++ b/src/eric7/Preferences/ConfigurationPages/WebBrowserPage.py Wed Dec 20 14:58:58 2023 +0100 @@ -27,7 +27,7 @@ Constructor @param configDialog reference to the configuration dialog - (ConfigurationDialog) + @type ConfigurationDialog """ super().__init__() self.setupUi(self) @@ -464,7 +464,8 @@ Private slot to enable elements depending on the selected startup entry. - @param index index of the selected entry (integer) + @param index index of the selected entry + @type int """ # set state of the session related items self.loadTabOnActivationCheckBox.setEnabled(index in [3, 4]) @@ -486,7 +487,9 @@ Module function to create the configuration page. @param dlg reference to the configuration dialog - @return reference to the instantiated page (ConfigurationPageBase) + @type ConfigurationDialog + @return reference to the instantiated page + @rtype ConfigurationPageBase """ page = WebBrowserPage(dlg) return page