| 947 | } |
| 948 | |
| 949 | void OnEditboxChanged(WidgetID wid) override |
| 950 | { |
| 951 | if (wid == WID_SL_FILTER) { |
| 952 | this->string_filter.SetFilterTerm(this->filter_editbox.text.GetText()); |
| 953 | this->InvalidateData(SLIWD_FILTER_CHANGES); |
| 954 | } |
| 955 | |
| 956 | if (wid == WID_SL_SAVE_OSK_TITLE) { |
| 957 | this->selected = nullptr; |
| 958 | this->InvalidateData(SLIWD_SELECTION_CHANGES); |
| 959 | } |
| 960 | } |
| 961 | }; |
| 962 | |
| 963 | /** Load game/scenario */ |
nothing calls this directly
no test coverage detected