* Recursively accumulate the folding state of the tree. * @param[in,out] all_folded Set to false, if one entry is not folded. * @param[in,out] all_unfolded Set to false, if one entry is folded. */
| 339 | * @param[in,out] all_unfolded Set to false, if one entry is folded. |
| 340 | */ |
| 341 | void SettingsContainer::GetFoldingState(bool &all_folded, bool &all_unfolded) const |
| 342 | { |
| 343 | for (auto &it : this->entries) { |
| 344 | it->GetFoldingState(all_folded, all_unfolded); |
| 345 | } |
| 346 | } |
| 347 | |
| 348 | /** |
| 349 | * Update the filter state. |
no test coverage detected