| 260 | } |
| 261 | |
| 262 | void SettingsDialog::checkEmptyDeviceList() |
| 263 | { |
| 264 | if (this->treeWidgetDevice->invisibleRootItem()->childCount() == 0) |
| 265 | { |
| 266 | this->tabWidgetSettings->setCurrentIndex(2); |
| 267 | this->treeWidgetDevice->setStyleSheet("border-color: firebrick;"); |
| 268 | } |
| 269 | else |
| 270 | this->treeWidgetDevice->setStyleSheet(""); |
| 271 | } |
| 272 | |
| 273 | void SettingsDialog::checkEmptyOscOutputList() |
| 274 | { |
nothing calls this directly
no outgoing calls
no test coverage detected