| 1234 | */ |
| 1235 | template<typename TPred> |
| 1236 | static void InvalidateByCondition(TPred pred) |
| 1237 | { |
| 1238 | WindowVisitEach([pred](WindowBase* w) { |
| 1239 | if (pred(w)) |
| 1240 | { |
| 1241 | w->invalidate(); |
| 1242 | } |
| 1243 | }); |
| 1244 | } |
| 1245 | |
| 1246 | /** |
| 1247 | * Invalidates all windows with the specified window class. |
nothing calls this directly
no test coverage detected