| 204 | } |
| 205 | |
| 206 | void |
| 207 | RMSViewTab::disconnectSocket(void) |
| 208 | { |
| 209 | if (this->socket != nullptr) { |
| 210 | this->socket->close(); |
| 211 | delete this->socket; |
| 212 | this->socket = nullptr; |
| 213 | } |
| 214 | |
| 215 | this->ui->stopButton->setEnabled(false); |
| 216 | this->ui->stopButton->setChecked(false); |
| 217 | this->ui->stopButton->setIcon(QIcon(":/icons/offline.png")); |
| 218 | } |
| 219 | |
| 220 | void |
| 221 | RMSViewTab::fitVertical(void) |
no test coverage detected