src/eric7/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopListSelectionDialog.py

branch
eric7-maintenance
changeset 10460
3b34efa2857c
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
--- a/src/eric7/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopListSelectionDialog.py	Sun Dec 03 14:54:00 2023 +0100
+++ b/src/eric7/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopListSelectionDialog.py	Mon Jan 01 11:10:45 2024 +0100
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 
-# Copyright (c) 2013 - 2023 Detlev Offenbach <detlev@die-offenbachs.de>
+# Copyright (c) 2013 - 2024 Detlev Offenbach <detlev@die-offenbachs.de>
 #
 
 """
@@ -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():

eric ide

mercurial