* Closes all windows, save for those having any of the passed flags. */
| 1082 | * Closes all windows, save for those having any of the passed flags. |
| 1083 | */ |
| 1084 | void CloseAllExceptFlags(WindowFlags flags) override |
| 1085 | { |
| 1086 | CloseByCondition([flags](WindowBase* w) -> bool { return !w->flags.hasAny(flags); }); |
| 1087 | } |
| 1088 | |
| 1089 | /** |
| 1090 | * Closes all windows except the specified window number and class. |
no test coverage detected