30 the main entry (bool) |
30 the main entry (bool) |
31 @param allowMultiSub flag indicating to allow multiple selections for |
31 @param allowMultiSub flag indicating to allow multiple selections for |
32 the sub entry (bool) |
32 the sub entry (bool) |
33 @param parent reference to the parent widget (QWidget) |
33 @param parent reference to the parent widget (QWidget) |
34 """ |
34 """ |
35 super(DotDesktopListSelectionDialog, self).__init__(parent) |
35 super().__init__(parent) |
36 self.setupUi(self) |
36 self.setupUi(self) |
37 |
37 |
38 if isinstance(selectedEntries, str): |
38 if isinstance(selectedEntries, str): |
39 selectedEntries = selectedEntries.split(separator) |
39 selectedEntries = selectedEntries.split(separator) |
40 |
40 |