src/eric7/Project/LexerAssociationDialog.py

branch
eric7
changeset 10430
e440aaf179ce
parent 10373
093dcebe5ecb
child 10439
21c28b0f9e41
diff -r 643989a1e2bd -r e440aaf179ce src/eric7/Project/LexerAssociationDialog.py
--- a/src/eric7/Project/LexerAssociationDialog.py	Wed Dec 20 15:42:44 2023 +0100
+++ b/src/eric7/Project/LexerAssociationDialog.py	Wed Dec 20 19:28:22 2023 +0100
@@ -29,7 +29,9 @@
         Constructor
 
         @param project reference to the project object
-        @param parent reference to the parent widget (QWidget)
+        @type Project
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -113,9 +115,10 @@
         Private slot to handle the clicked 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
         """
         if itm is None:
             self.editorFileExtEdit.clear()
@@ -139,9 +142,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)
 

eric ide

mercurial