src/eric7/Preferences/ToolGroupConfigurationDialog.py

branch
eric7
changeset 10428
a071d4065202
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Preferences/ToolGroupConfigurationDialog.py	Wed Dec 20 11:06:38 2023 +0100
+++ b/src/eric7/Preferences/ToolGroupConfigurationDialog.py	Wed Dec 20 14:58:58 2023 +0100
@@ -27,8 +27,11 @@
         Constructor
 
         @param toolGroups list of configured tool groups
-        @param currentGroup number of the active group (integer)
-        @param parent parent widget (QWidget)
+        @type list
+        @param currentGroup number of the active group
+        @type int
+        @param parent parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -176,7 +179,8 @@
         """
         Private slot to set the lineedits depending on the selected entry.
 
-        @param row the row of the selected entry (integer)
+        @param row the row of the selected entry
+        @type int
         """
         if row >= 0 and row < len(self.toolGroups):
             group = self.toolGroups[row]
@@ -207,6 +211,7 @@
 
         @return a list of lists containing the group name and the
             tool group entries
+        @rtype list
         """
         return self.toolGroups[:], self.currentGroup
 
@@ -214,8 +219,10 @@
         """
         Private method used two swap two list entries given by their index.
 
-        @param itm1 index of first entry (int)
-        @param itm2 index of second entry (int)
+        @param itm1 index of first entry
+        @type int
+        @param itm2 index of second entry
+        @type int
         """
         tmp = self.toolGroups[itm1]
         self.toolGroups[itm1] = self.toolGroups[itm2]

eric ide

mercurial