src/eric7/WebBrowser/SiteInfo/SiteInfoDialog.py

branch
eric7
changeset 10436
f6881d10e995
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/WebBrowser/SiteInfo/SiteInfoDialog.py	Fri Dec 22 13:57:47 2023 +0100
+++ b/src/eric7/WebBrowser/SiteInfo/SiteInfoDialog.py	Fri Dec 22 17:24:07 2023 +0100
@@ -47,8 +47,10 @@
         """
         Constructor
 
-        @param browser reference to the browser window (HelpBrowser)
-        @param parent reference to the parent widget (QWidget)
+        @param browser reference to the browser window
+        @type WebBrowserView
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -201,8 +203,10 @@
         """
         Private slot to show a preview of the selected image.
 
-        @param current current image entry (QTreeWidgetItem)
-        @param previous old current entry (QTreeWidgetItem)
+        @param current current image entry
+        @type QTreeWidgetItem
+        @param previous old current entry
+        @type QTreeWidgetItem
         """
         if current is None:
             return
@@ -277,7 +281,8 @@
         """
         Private slot to show a context menu for the images list.
 
-        @param pos position for the menu (QPoint)
+        @param pos position for the menu
+        @type QPoint
         """
         itm = self.imagesTree.itemAt(pos)
         if itm is None:

eric ide

mercurial