* Process all scheduled invalidations. */
| 3248 | * Process all scheduled invalidations. |
| 3249 | */ |
| 3250 | void Window::ProcessScheduledInvalidations() |
| 3251 | { |
| 3252 | for (int data : this->scheduled_invalidation_data) { |
| 3253 | if (this->window_class == WC_INVALID) break; |
| 3254 | this->OnInvalidateData(data, true); |
| 3255 | } |
| 3256 | this->scheduled_invalidation_data.clear(); |
| 3257 | } |
| 3258 | |
| 3259 | /** |
| 3260 | * Process all invalidation of highlighted widgets. |
no test coverage detected