| 569 | } |
| 570 | |
| 571 | void TaskWindow::openTask(unsigned int id) |
| 572 | { |
| 573 | int sourceRow = d->taskModel->rowForId(id); |
| 574 | QModelIndex sourceIdx = d->taskModel->index(sourceRow, 0); |
| 575 | QModelIndex filterIdx = d->filter->mapFromSource(sourceIdx); |
| 576 | triggerDefaultHandler(filterIdx); |
| 577 | } |
| 578 | |
| 579 | void TaskWindow::clearTasks(const QString &categoryId) |
| 580 | { |
nothing calls this directly
no test coverage detected