| 297 | } |
| 298 | |
| 299 | std::string PickerWindow::GetWidgetString(WidgetID widget, StringID stringid) const |
| 300 | { |
| 301 | if (IsInsideMM(widget, this->badge_filters.first, this->badge_filters.second)) { |
| 302 | return this->GetWidget<NWidgetBadgeFilter>(widget)->GetStringParameter(this->badge_filter_choices); |
| 303 | } |
| 304 | |
| 305 | return this->Window::GetWidgetString(widget, stringid); |
| 306 | } |
| 307 | |
| 308 | void PickerWindow::DrawWidget(const Rect &r, WidgetID widget) const |
| 309 | { |
nothing calls this directly
no test coverage detected