21 def __init__(self, guards, activeGuards=None, listOnly=False, parent=None): |
21 def __init__(self, guards, activeGuards=None, listOnly=False, parent=None): |
22 """ |
22 """ |
23 Constructor |
23 Constructor |
24 |
24 |
25 @param guards list of guards to select from (list of strings) |
25 @param guards list of guards to select from (list of strings) |
26 @keyparam activeGuards list of active guards (list of strings) |
26 @param activeGuards list of active guards (list of strings) |
27 @param listOnly flag indicating to only list the guards (boolean) |
27 @param listOnly flag indicating to only list the guards (boolean) |
28 @param parent reference to the parent widget (QWidget) |
28 @param parent reference to the parent widget (QWidget) |
29 """ |
29 """ |
30 super(HgQueuesGuardsSelectionDialog, self).__init__(parent) |
30 super(HgQueuesGuardsSelectionDialog, self).__init__(parent) |
31 self.setupUi(self) |
31 self.setupUi(self) |