| 560 | } |
| 561 | |
| 562 | void TaskWindow::showTask(unsigned int id) |
| 563 | { |
| 564 | int sourceRow = d->taskModel->rowForId(id); |
| 565 | QModelIndex sourceIdx = d->taskModel->index(sourceRow, 0); |
| 566 | QModelIndex filterIdx = d->filter->mapFromSource(sourceIdx); |
| 567 | d->listview->setCurrentIndex(filterIdx); |
| 568 | // popup(Core::IOutputPane::ModeSwitch); |
| 569 | } |
| 570 | |
| 571 | void TaskWindow::openTask(unsigned int id) |
| 572 | { |
nothing calls this directly
no test coverage detected