--- a/src/eric7/Preferences/ConfigurationPages/EditorHighlightersPage.py Wed Dec 20 11:06:38 2023 +0100 +++ b/src/eric7/Preferences/ConfigurationPages/EditorHighlightersPage.py Wed Dec 20 14:58:58 2023 +0100 @@ -31,6 +31,7 @@ Constructor @param lexers reference to the lexers dictionary + @type dict """ super().__init__() self.setupUi(self) @@ -128,9 +129,10 @@ Private slot to handle the clicked signal of the lexer association list. - @param itm reference to the selected item (QTreeWidgetItem) - @param column column the item was clicked or activated (integer) - (ignored) + @param itm reference to the selected item + @type QTreeWidgetItem + @param column column the item was clicked or activated (ignored) + @type int """ if itm is None: self.editorFileExtEdit.clear() @@ -154,9 +156,10 @@ Private slot to handle the activated signal of the lexer association list. - @param itm reference to the selecte item (QTreeWidgetItem) - @param column column the item was clicked or activated (integer) - (ignored) + @param itm reference to the selecte item + @type QTreeWidgetItem + @param column column the item was clicked or activated + @type int """ self.on_editorLexerList_itemClicked(itm, column) @@ -182,7 +185,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 = EditorHighlightersPage(dlg.getLexers()) return page