| 30 | } |
| 31 | |
| 32 | void UiPreferences::apply() |
| 33 | { |
| 34 | KDevelop::ConfigPage::apply(); |
| 35 | |
| 36 | UiController *uiController = Core::self()->uiControllerInternal(); |
| 37 | const auto windows = uiController->mainWindows(); |
| 38 | for (Sublime::MainWindow* window : windows) { |
| 39 | window->loadUiPreferences(); |
| 40 | } |
| 41 | uiController->loadSettings(); |
| 42 | } |
| 43 | |
| 44 | QString UiPreferences::name() const |
| 45 | { |
nothing calls this directly
no test coverage detected