diff -r c712d09cc839 -r f6881d10e995 src/eric7/WebBrowser/GreaseMonkey/GreaseMonkeyConfiguration/GreaseMonkeyConfigurationDialog.py --- a/src/eric7/WebBrowser/GreaseMonkey/GreaseMonkeyConfiguration/GreaseMonkeyConfigurationDialog.py Fri Dec 22 13:57:47 2023 +0100 +++ b/src/eric7/WebBrowser/GreaseMonkey/GreaseMonkeyConfiguration/GreaseMonkeyConfigurationDialog.py Fri Dec 22 17:24:07 2023 +0100 @@ -30,8 +30,10 @@ """ Constructor - @param manager reference to the manager object (GreaseMonkeyManager) - @param parent reference to the parent widget (QWidget) + @param manager reference to the manager object + @type GreaseMonkeyManager + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -58,7 +60,8 @@ """ Private slot to open the greasyfork.org web site. - @param link URL (string) + @param link URL + @type str """ from eric7.WebBrowser.WebBrowserWindow import WebBrowserWindow @@ -73,7 +76,8 @@ """ Private slot to show information about the selected script. - @param item reference to the double clicked item (QListWidgetItem) + @param item reference to the double clicked item + @type QListWidgetItem """ from .GreaseMonkeyConfigurationScriptInfoDialog import ( GreaseMonkeyConfigurationScriptInfoDialog, @@ -133,8 +137,10 @@ """ Private method to get the script for the given item. - @param itm item to get script for (QListWidgetItem) - @return reference to the script object (GreaseMonkeyScript) + @param itm item to get script for + @type QListWidgetItem + @return reference to the script object + @rtype GreaseMonkeyScript """ if itm is None: return None @@ -146,7 +152,8 @@ """ Private slot to remove a script item. - @param itm item to be removed (QListWidgetItem) + @param itm item to be removed + @type QListWidgetItem """ script = self.__getScript(itm) if script is None: @@ -167,7 +174,8 @@ """ Private slot to handle changes of a script item. - @param itm changed item (QListWidgetItem) + @param itm changed item + @type QListWidgetItem """ script = self.__getScript(itm) if script is None: