| 377 | } |
| 378 | |
| 379 | void WindowManager::reloadConfigWindows() |
| 380 | { |
| 381 | if (encodeWindow_) { |
| 382 | encodeWindow_->update_config(); |
| 383 | } |
| 384 | if (executableWindow_) { |
| 385 | executableWindow_->update_config(); |
| 386 | } |
| 387 | if (inputWindow_) { |
| 388 | inputWindow_->update(); |
| 389 | } |
| 390 | if (inputEditorWindow_) { |
| 391 | inputEditorWindow_->update_config(); |
| 392 | } |
| 393 | if (settingsWindow_) { |
| 394 | settingsWindow_->loadConfig(); |
| 395 | } |
| 396 | } |
| 397 | |
| 398 | void WindowManager::getRamWatch(std::string &watch) const |
| 399 | { |
no test coverage detected