src/eric7/Preferences/ConfigurationPages/IconsPage.py

branch
eric7
changeset 10428
a071d4065202
parent 10278
e26fa3b06f4f
child 10439
21c28b0f9e41
diff -r 3733e2b23cf7 -r a071d4065202 src/eric7/Preferences/ConfigurationPages/IconsPage.py
--- a/src/eric7/Preferences/ConfigurationPages/IconsPage.py	Wed Dec 20 11:06:38 2023 +0100
+++ b/src/eric7/Preferences/ConfigurationPages/IconsPage.py	Wed Dec 20 14:58:58 2023 +0100
@@ -96,7 +96,8 @@
         Private slot to handle the currentRowChanged signal of the icons
         directory list.
 
-        @param row the current row (integer)
+        @param row the current row
+        @type int
         """
         if row == -1:
             self.deleteIconDirectoryButton.setEnabled(False)
@@ -114,7 +115,8 @@
         """
         Private slot to handle the textChanged signal of the directory picker.
 
-        @param txt the text of the directory picker (string)
+        @param txt the text of the directory picker
+        @type str
         """
         self.addIconDirectoryButton.setEnabled(txt != "")
         self.showIconsButton.setEnabled(
@@ -230,7 +232,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 = IconsPage()
     return page

eric ide

mercurial