Tasks/TaskFilterConfigDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
21 Constructor 21 Constructor
22 22
23 @param taskFilter the task filter object to be configured 23 @param taskFilter the task filter object to be configured
24 @param parent the parent widget (QWidget) 24 @param parent the parent widget (QWidget)
25 """ 25 """
26 QDialog.__init__(self, parent) 26 super().__init__(parent)
27 self.setupUi(self) 27 self.setupUi(self)
28 28
29 if taskFilter.descriptionFilter is None or \ 29 if taskFilter.descriptionFilter is None or \
30 not taskFilter.descriptionFilter.pattern(): 30 not taskFilter.descriptionFilter.pattern():
31 self.descriptionGroup.setChecked(False) 31 self.descriptionGroup.setChecked(False)

eric ide

mercurial