src/eric7/Preferences/ConfigurationPages/EditorHighlightersPage.py

branch
eric7
changeset 10428
a071d4065202
parent 10373
093dcebe5ecb
child 10439
21c28b0f9e41
--- 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

eric ide

mercurial