| 1330 | } |
| 1331 | |
| 1332 | void TOPPASBase::toolFailed() |
| 1333 | { |
| 1334 | TOPPASToolVertex* tv = dynamic_cast<TOPPASToolVertex*>(QObject::sender()); |
| 1335 | if (tv) |
| 1336 | { |
| 1337 | String text = tv->getName(); |
| 1338 | String type = tv->getType(); |
| 1339 | if (!type.empty()) |
| 1340 | { |
| 1341 | text += " (" + type + ")"; |
| 1342 | } |
| 1343 | text += " failed!"; |
| 1344 | |
| 1345 | log_->appendNewHeader(LogWindow::LogState::CRITICAL, text, ""); |
| 1346 | } |
| 1347 | updateMenu(); |
| 1348 | } |
| 1349 | |
| 1350 | void TOPPASBase::outputVertexFinished(const String& file) |
| 1351 | { |
nothing calls this directly
no test coverage detected