src/eric7/WebBrowser/PersonalInformationManager/PersonalInformationManager.py

branch
eric7
changeset 10436
f6881d10e995
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/WebBrowser/PersonalInformationManager/PersonalInformationManager.py	Fri Dec 22 13:57:47 2023 +0100
+++ b/src/eric7/WebBrowser/PersonalInformationManager/PersonalInformationManager.py	Fri Dec 22 17:24:07 2023 +0100
@@ -48,7 +48,8 @@
         """
         Constructor
 
-        @param parent reference to the parent object (QObject)
+        @param parent reference to the parent object
+        @type QObject
         """
         super().__init__(parent)
 
@@ -131,10 +132,12 @@
         """
         Public method to create the personal information sub-menu.
 
-        @param menu reference to the main menu (QMenu)
-        @param view reference to the view (HelpBrowser)
+        @param menu reference to the main menu
+        @type QMenu
+        @param view reference to the view
+        @type WebBrowserView
         @param hitTestResult reference to the hit test result
-            (WebHitTestResult)
+        @type WebHitTestResult
         """
         self.__view = view
         self.__clickedPos = hitTestResult.pos()
@@ -190,9 +193,12 @@
         """
         Protected method to handle key press events we are interested in.
 
-        @param view reference to the view (HelpBrowser)
-        @param evt reference to the key event (QKeyEvent)
-        @return flag indicating handling of the event (boolean)
+        @param view reference to the view
+        @type WebBrowserView
+        @param evt reference to the key event
+        @type QKeyEvent
+        @return flag indicating handling of the event
+        @rtype bool
         """
         if view is None:
             return False

eric ide

mercurial