| 1294 | } |
| 1295 | |
| 1296 | void TOPPASBase::toolFinished() |
| 1297 | { |
| 1298 | TOPPASToolVertex* tv = dynamic_cast<TOPPASToolVertex*>(QObject::sender()); |
| 1299 | if (tv) |
| 1300 | { |
| 1301 | String text = tv->getName(); |
| 1302 | String type = tv->getType(); |
| 1303 | if (!type.empty()) |
| 1304 | { |
| 1305 | text += " (" + type + ")"; |
| 1306 | } |
| 1307 | text += " finished!"; |
| 1308 | |
| 1309 | log_->appendNewHeader(LogWindow::LogState::NOTICE, text, ""); |
| 1310 | } |
| 1311 | updateMenu(); |
| 1312 | } |
| 1313 | |
| 1314 | void TOPPASBase::toolCrashed() |
| 1315 | { |
nothing calls this directly
no test coverage detected