コード例 #1
0
ファイル: tasklist.py プロジェクト: HieronymusCH/TaskCoach
 def removeItems(self, tasks):
     super(TaskList, self).removeItems(tasks)
     for task in self._compositesAndAllChildren(tasks):
         for category in task.categories():
             category.removeCategorizable(task)
コード例 #2
0
ファイル: tasklist.py プロジェクト: HieronymusCH/TaskCoach
 def extend(self, tasks):
     super(TaskList, self).extend(tasks)
     for task in self._compositesAndAllChildren(tasks):
         for category in task.categories():
             category.addCategorizable(task)