* Update size of all QueryStrings of this window. */
| 353 | * Update size of all QueryStrings of this window. |
| 354 | */ |
| 355 | void Window::UpdateQueryStringSize() |
| 356 | { |
| 357 | for (auto &qs : this->querystrings) { |
| 358 | qs.second->text.UpdateSize(); |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | /** |
| 363 | * Get the current input text buffer. |
no test coverage detected