src/eric7/WebBrowser/SafeBrowsing/SafeBrowsingLabel.py

branch
eric7
changeset 10436
f6881d10e995
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/WebBrowser/SafeBrowsing/SafeBrowsingLabel.py	Fri Dec 22 13:57:47 2023 +0100
+++ b/src/eric7/WebBrowser/SafeBrowsing/SafeBrowsingLabel.py	Fri Dec 22 17:24:07 2023 +0100
@@ -26,7 +26,8 @@
         """
         Constructor
 
-        @param parent reference to the parent widget (QWidget)
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
 
@@ -45,7 +46,8 @@
         """
         Protected method to handle mouse release events.
 
-        @param evt reference to the mouse event (QMouseEvent)
+        @param evt reference to the mouse event
+        @type QMouseEvent
         """
         if evt.button() == Qt.MouseButton.LeftButton:
             self.clicked.emit(evt.globalPosition().toPoint())
@@ -56,7 +58,8 @@
         """
         Protected method to handle mouse double click events.
 
-        @param evt reference to the mouse event (QMouseEvent)
+        @param evt reference to the mouse event
+        @type QMouseEvent
         """
         if evt.button() == Qt.MouseButton.LeftButton:
             self.clicked.emit(evt.globalPosition().toPoint())

eric ide

mercurial