src/eric7/Network/IRC/IrcNetworkListDialog.py

branch
eric7
changeset 10428
a071d4065202
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Network/IRC/IrcNetworkListDialog.py	Wed Dec 20 11:06:38 2023 +0100
+++ b/src/eric7/Network/IRC/IrcNetworkListDialog.py	Wed Dec 20 14:58:58 2023 +0100
@@ -24,8 +24,10 @@
         """
         Constructor
 
-        @param manager reference to the IRC network manager (IrcNetworkManager)
-        @param parent reference to the parent widget (QWidget)
+        @param manager reference to the IRC network manager
+        @type IrcNetworkManager
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -66,7 +68,8 @@
         """
         Private method to (re-)set the data of a network entry.
 
-        @param itm reference to the network entry (QTreeWidgetItem)
+        @param itm reference to the network entry
+        @type QTreeWidgetItem
         """
         from .IrcNetworkManager import IrcIdentity
 
@@ -176,7 +179,8 @@
         """
         Private slot handling the expansion of a top level item.
 
-        @param item reference to the expanded item (QTreeWidgetItem)
+        @param item reference to the expanded item
+        @type QTreeWidgetItem
         """
         self.__resizeColumns()
 
@@ -185,7 +189,8 @@
         """
         Private slot handling the collapse of a top level item.
 
-        @param item reference to the collapsed item (QTreeWidgetItem)
+        @param item reference to the collapsed item
+        @type QTreeWidgetItem
         """
         self.__resizeColumns()
 
@@ -194,7 +199,8 @@
         """
         Private slot handling the auto-connect selection.
 
-        @param checked flag indicating the state of the button (boolean)
+        @param checked flag indicating the state of the button
+        @type bool
         """
         itm = self.networksList.selectedItems()[0]
         if itm.parent() is None:
@@ -230,8 +236,10 @@
         """
         Private method to set the auto-connect entry of a network item.
 
-        @param itm reference to the network item (QTreeWidgetItem)
-        @param on flag indicating the auto-connect state (boolean)
+        @param itm reference to the network item
+        @type QTreeWidgetItem
+        @param on flag indicating the auto-connect state
+        @type bool
         """
         autoConnect = self.tr("Yes") if on else self.tr("No")
         for index in range(itm.childCount()):

eric ide

mercurial