0x004CC692
| 363 | |
| 364 | // 0x004CC692 |
| 365 | void close(WindowType type) |
| 366 | { |
| 367 | bool repeat = true; |
| 368 | while (repeat) |
| 369 | { |
| 370 | repeat = false; |
| 371 | for (auto&& w : _windows) |
| 372 | { |
| 373 | if (w.type != type) |
| 374 | { |
| 375 | continue; |
| 376 | } |
| 377 | |
| 378 | close(&w); |
| 379 | repeat = true; |
| 380 | break; |
| 381 | } |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | // 0x004CC692 |
| 386 | void close(WindowType type, WindowNumber_t id) |
no test coverage detected