5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog to select a list of guards. |
7 Module implementing a dialog to select a list of guards. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt4.QtGui import QDialog, QDialogButtonBox, QListWidgetItem, QAbstractItemView |
10 from PyQt4.QtGui import QDialog, QDialogButtonBox, QListWidgetItem, \ |
|
11 QAbstractItemView |
11 |
12 |
12 from .Ui_HgQueuesGuardsSelectionDialog import Ui_HgQueuesGuardsSelectionDialog |
13 from .Ui_HgQueuesGuardsSelectionDialog import Ui_HgQueuesGuardsSelectionDialog |
13 |
14 |
14 |
15 |
15 class HgQueuesGuardsSelectionDialog(QDialog, Ui_HgQueuesGuardsSelectionDialog): |
16 class HgQueuesGuardsSelectionDialog(QDialog, Ui_HgQueuesGuardsSelectionDialog): |