* Return the querystring associated to a editbox. * @param widnum Editbox widget index * @return QueryString or nullptr. */
| 333 | * @return QueryString or nullptr. |
| 334 | */ |
| 335 | const QueryString *Window::GetQueryString(WidgetID widnum) const |
| 336 | { |
| 337 | auto query = this->querystrings.find(widnum); |
| 338 | return query != this->querystrings.end() ? query->second : nullptr; |
| 339 | } |
| 340 | |
| 341 | /** |
| 342 | * Return the querystring associated to a editbox. |
no test coverage detected