WebBrowser/AdBlock/AdBlockExceptionsDialog.py

changeset 6028
859f6894eed9
parent 5389
9b1c800daff3
child 6048
82ad8ec9548c
--- a/WebBrowser/AdBlock/AdBlockExceptionsDialog.py	Thu Dec 14 19:25:34 2017 +0100
+++ b/WebBrowser/AdBlock/AdBlockExceptionsDialog.py	Mon Dec 18 18:09:39 2017 +0100
@@ -25,7 +25,8 @@
         """
         Constructor
         
-        @param parent reference to the parent widget (QWidget)
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super(AdBlockExceptionsDialog, self).__init__(parent)
         self.setupUi(self)
@@ -43,6 +44,7 @@
         Public slot to load the list of excepted hosts.
         
         @param hosts list of excepted hosts
+        @type list of str
         """
         self.hostList.clear()
         self.hostList.addItems(hosts)
@@ -52,7 +54,8 @@
         """
         Private slot to handle changes of the host edit.
         
-        @param txt text of the edit (string)
+        @param txt text of the edit
+        @type str
         """
         self.addButton.setEnabled(bool(txt))
     

eric ide

mercurial