| 639 | } |
| 640 | |
| 641 | void UiController::loadArea(Sublime::Area * area, const KConfigGroup & group) |
| 642 | { |
| 643 | area->load(group); |
| 644 | if (!area->workingSet().isEmpty()) { |
| 645 | WorkingSet* set = Core::self()->workingSetControllerInternal()->workingSet(area->workingSet()); |
| 646 | Q_ASSERT(set->isConnected(area)); |
| 647 | Q_UNUSED(set); |
| 648 | } |
| 649 | } |
| 650 | |
| 651 | void UiController::saveAllAreas(const KSharedConfigPtr& config) |
| 652 | { |
nothing calls this directly
no test coverage detected