diff -r 3733e2b23cf7 -r a071d4065202 src/eric7/PluginManager/PluginUninstallDialog.py --- a/src/eric7/PluginManager/PluginUninstallDialog.py Wed Dec 20 11:06:38 2023 +0100 +++ b/src/eric7/PluginManager/PluginUninstallDialog.py Wed Dec 20 14:58:58 2023 +0100 @@ -41,7 +41,9 @@ Constructor @param pluginManager reference to the plugin manager object - @param parent parent of this dialog (QWidget) + @type PluginManager + @param parent parent of this dialog + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -70,7 +72,8 @@ Private slot to populate the plugin name combo upon a change of the plugin area. - @param index index of the selected item (integer) + @param index index of the selected item + @type int """ pluginDirectory = self.pluginDirectoryCombo.itemData(index) pluginNames = sorted(self.__pluginManager.getPluginModules(pluginDirectory)) @@ -257,7 +260,9 @@ Constructor @param pluginManager reference to the plugin manager object - @param parent reference to the parent widget (QWidget) + @type PluginManager + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setSizeGripEnabled(True) @@ -285,7 +290,8 @@ """ Constructor - @param parent reference to the parent widget (QWidget) + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.cw = PluginUninstallWidget(None, self)