src/eric7/Preferences/ConfigurationPages/NetworkPage.py

branch
eric7
changeset 10428
a071d4065202
parent 10331
c1a2ff7e3575
child 10439
21c28b0f9e41
diff -r 3733e2b23cf7 -r a071d4065202 src/eric7/Preferences/ConfigurationPages/NetworkPage.py
--- a/src/eric7/Preferences/ConfigurationPages/NetworkPage.py	Wed Dec 20 11:06:38 2023 +0100
+++ b/src/eric7/Preferences/ConfigurationPages/NetworkPage.py	Wed Dec 20 14:58:58 2023 +0100
@@ -27,7 +27,7 @@
         Constructor
 
         @param configDialog reference to the configuration dialog
-            (ConfigurationDialog)
+        @type ConfigurationDialog
         """
         super().__init__()
         self.setupUi(self)
@@ -210,7 +210,8 @@
         """
         Private slot handling the selection of a proxy type.
 
-        @param index index of the selected item (integer)
+        @param index index of the selected item
+        @type int
         """
         proxyType = EricFtpProxyType(self.ftpProxyTypeCombo.itemData(index))
         self.ftpProxyHostEdit.setEnabled(proxyType != EricFtpProxyType.NO_PROXY)
@@ -234,7 +235,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 = NetworkPage(dlg)
     return page

eric ide

mercurial