| 924 | } |
| 925 | |
| 926 | void ListBox::_resetContainer(bool _update) |
| 927 | { |
| 928 | // обязательно у базового |
| 929 | Base::_resetContainer(_update); |
| 930 | |
| 931 | if (!_update) |
| 932 | { |
| 933 | WidgetManager& instance = WidgetManager::getInstance(); |
| 934 | for (const auto& line : mWidgetLines) |
| 935 | instance.unlinkFromUnlinkers(line); |
| 936 | } |
| 937 | } |
| 938 | |
| 939 | void ListBox::setPropertyOverride(std::string_view _key, std::string_view _value) |
| 940 | { |
nothing calls this directly
no test coverage detected