| 242 | } |
| 243 | |
| 244 | void |
| 245 | MultitaskController::cancelByIndex(int index) |
| 246 | { |
| 247 | if (index >= 0 && index < this->taskVec.size()) |
| 248 | this->taskVec[index]->task()->cancel(); |
| 249 | } |
| 250 | |
| 251 | void |
| 252 | MultitaskController::removeTaskContext(CancellableTaskContext *ctx) |
no test coverage detected