diff -r c712d09cc839 -r f6881d10e995 src/eric7/WebBrowser/CookieJar/CookiesExceptionsDialog.py --- a/src/eric7/WebBrowser/CookieJar/CookiesExceptionsDialog.py Fri Dec 22 13:57:47 2023 +0100 +++ b/src/eric7/WebBrowser/CookieJar/CookiesExceptionsDialog.py Fri Dec 22 17:24:07 2023 +0100 @@ -24,8 +24,10 @@ """ Constructor - @param cookieJar reference to the cookie jar (CookieJar) - @param parent reference to the parent widget (QWidget) + @param cookieJar reference to the cookie jar + @type CookieJar + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -66,7 +68,8 @@ """ Public method to set the domain to be displayed. - @param domain domain name to be displayed (string) + @param domain domain name to be displayed + @type str """ self.domainEdit.setText(domain) @@ -75,7 +78,8 @@ """ Private slot to handle a change of the domain edit text. - @param txt current text of the edit (string) + @param txt current text of the edit + @type str """ enabled = txt != "" self.blockButton.setEnabled(enabled)