5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog to select multiple entries from a list. |
7 Module implementing a dialog to select multiple entries from a list. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt5.QtWidgets import QDialog, QListWidgetItem, QAbstractItemView |
10 from PyQt6.QtWidgets import QDialog, QListWidgetItem, QAbstractItemView |
11 |
11 |
12 from .Ui_DotDesktopListSelectionDialog import Ui_DotDesktopListSelectionDialog |
12 from .Ui_DotDesktopListSelectionDialog import Ui_DotDesktopListSelectionDialog |
13 |
13 |
14 |
14 |
15 class DotDesktopListSelectionDialog(QDialog, Ui_DotDesktopListSelectionDialog): |
15 class DotDesktopListSelectionDialog(QDialog, Ui_DotDesktopListSelectionDialog): |