Recursively open all folds of sub-pages */
| 327 | |
| 328 | /** Recursively open all folds of sub-pages */ |
| 329 | void SettingsContainer::UnFoldAll() |
| 330 | { |
| 331 | for (auto &it : this->entries) { |
| 332 | it->UnFoldAll(); |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | /** |
| 337 | * Recursively accumulate the folding state of the tree. |
no test coverage detected