Recursively close all folds of sub-pages */
| 319 | |
| 320 | /** Recursively close all folds of sub-pages */ |
| 321 | void SettingsContainer::FoldAll() |
| 322 | { |
| 323 | for (auto &it : this->entries) { |
| 324 | it->FoldAll(); |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | /** Recursively open all folds of sub-pages */ |
| 329 | void SettingsContainer::UnFoldAll() |
no test coverage detected