--- a/eric6/Preferences/ConfigurationDialog.py Sun Jan 17 13:53:08 2021 +0100 +++ b/eric6/Preferences/ConfigurationDialog.py Mon Feb 01 10:38:16 2021 +0100 @@ -4,7 +4,7 @@ # """ -Module implementing a dialog for the configuration of eric6. +Module implementing a dialog for the configuration of eric. """ import os @@ -62,7 +62,7 @@ class ConfigurationWidget(QWidget): """ - Class implementing a dialog for the configuration of eric6. + Class implementing a dialog for the configuration of eric. @signal preferencesChanged() emitted after settings have been changed @signal masterPasswordChanged(str, str) emitted after the master @@ -87,13 +87,13 @@ Constructor @param parent The parent widget of this dialog. (QWidget) - @keyparam fromEric flag indicating a dialog generation from within the - eric6 ide (boolean) - @keyparam displayMode mode of the configuration dialog + @param fromEric flag indicating a dialog generation from within the + eric ide (boolean) + @param displayMode mode of the configuration dialog (DefaultMode, HelpBrowserMode, TrayStarterMode, HexEditorMode, WebBrowserMode) @exception RuntimeError raised to indicate an invalid dialog mode - @keyparam expandedEntries list of entries to be shown expanded + @param expandedEntries list of entries to be shown expanded (list of strings) """ super(ConfigurationWidget, self).__init__(parent) @@ -344,7 +344,7 @@ [self.tr("Appearance"), "preferences-styles", "WebBrowserAppearancePage", "0webBrowserPage", None], "webBrowserPage": - [self.tr("eric6 Web Browser"), "ericWeb", + [self.tr("eric Web Browser"), "ericWeb", "WebBrowserPage", "0webBrowserPage", None], "webBrowserFlashCookieManagerPage": [self.tr("Flash Cookie Manager"), @@ -394,7 +394,7 @@ [self.tr("Appearance"), "preferences-styles", "WebBrowserAppearancePage", None, None], "webBrowserPage": - [self.tr("eric6 Web Browser"), "ericWeb", + [self.tr("eric Web Browser"), "ericWeb", "WebBrowserPage", None, None], "webBrowserFlashCookieManagerPage": @@ -926,12 +926,12 @@ @param parent The parent widget of this dialog. (QWidget) @param name The name of this dialog. string @param modal Flag indicating a modal dialog. (boolean) - @keyparam fromEric flag indicating a dialog generation from within the - eric6 ide (boolean) - @keyparam displayMode mode of the configuration dialog + @param fromEric flag indicating a dialog generation from within the + eric ide (boolean) + @param displayMode mode of the configuration dialog (DefaultMode, HelpBrowserMode, TrayStarterMode, HexEditorMode, WebBrowserMode) - @keyparam expandedEntries list of entries to be shown expanded + @param expandedEntries list of entries to be shown expanded (list of strings) """ super(ConfigurationDialog, self).__init__(parent)