* Mark entire window as dirty (in need of re-paint) * @ingroup dirty */
| 966 | * @ingroup dirty |
| 967 | */ |
| 968 | void Window::SetDirty() const |
| 969 | { |
| 970 | AddDirtyBlock(this->left, this->top, this->left + this->width, this->top + this->height); |
| 971 | } |
| 972 | |
| 973 | /** |
| 974 | * Re-initialize a window, and optionally change its size. |
no test coverage detected