| 152 | } |
| 153 | |
| 154 | void TncTerminal::enterCommandMode() |
| 155 | { |
| 156 | if (m_mode == Mode::Command) |
| 157 | return; |
| 158 | setMode(Mode::Command); |
| 159 | emitLine(QStringLiteral("*** Command mode (link still up — BYE to disconnect)")); |
| 160 | } |
| 161 | |
| 162 | void TncTerminal::disconnectLink() |
| 163 | { |
no test coverage detected