TimeTracker/TimeTrackerEntryDialog.py

changeset 94
a3d936304e51
parent 92
81b63c2dc40c
child 98
693e42176007
equal deleted inserted replaced
93:7ffe7ae4947d 94:a3d936304e51
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)

eric ide

mercurial