27 task combo box (list of strings) |
27 task combo box (list of strings) |
28 @param commentItems list of comment item entries for the |
28 @param commentItems list of comment item entries for the |
29 comment combo box (list of strings) |
29 comment combo box (list of strings) |
30 @param parent reference to the parent widget (QWidget) |
30 @param parent reference to the parent widget (QWidget) |
31 """ |
31 """ |
32 super(TimeTrackerEntryDialog, self).__init__(parent) |
32 super().__init__(parent) |
33 self.setupUi(self) |
33 self.setupUi(self) |
34 |
34 |
35 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) |
35 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) |
36 |
36 |
37 self.taskCombo.addItems(taskItems) |
37 self.taskCombo.addItems(taskItems) |