| 230 | } |
| 231 | |
| 232 | QUuid ConsoleManager::newConsole(const QString &name, bool rename) |
| 233 | { |
| 234 | auto ptr_term = dynamic_cast<ConsoleWidget*>(this->createConsole(name, true, rename)); |
| 235 | return QUuid::fromString(d->consoleMap.key(ptr_term, "")); |
| 236 | } |
| 237 | |
| 238 | void ConsoleManager::selectConsole(const QUuid &uuid) |
| 239 | { |
nothing calls this directly
no test coverage detected