--- a/src/eric7/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopListSelectionDialog.py Fri Dec 22 17:24:07 2023 +0100 +++ b/src/eric7/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopListSelectionDialog.py Fri Dec 22 19:45:17 2023 +0100 @@ -30,16 +30,23 @@ """ Constructor - @param entries list of entries to be shown (list of string) - @param selectedEntries list of entries to be selected (list of string - or string of entries separated by separator) - @param separator separator string (string) - @param subEntries secondary list of entries (list of string) + @param entries list of entries to be shown + @type list of str + @param selectedEntries list of entries to be selected or a string with + entries separated by separator + @type list of str or str + @param separator separator string + @type str + @param subEntries secondary list of entries + @type list of str @param allowMultiMain flag indicating to allow multiple selections for - the main entry (bool) + the main entry + @type bool @param allowMultiSub flag indicating to allow multiple selections for - the sub entry (bool) - @param parent reference to the parent widget (QWidget) + the sub entry + @type bool + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -74,10 +81,13 @@ Public method to extract the selected entries as a list or a string. - @param separator separator string (string) - @param separatorAtEnd flag indicating to append the separator (boolean) - @return list of selected entries (list of string) if the separator is - None or a string with entries delimited by separator (string) + @param separator separator string + @type str + @param separatorAtEnd flag indicating to append the separator + @type bool + @return list of selected entries if the separator is None or a string + with entries delimited by separator + @rtype list od str or str """ entries = [] for itm in self.entriesList.selectedItems():