* Close down the windowing system */
| 1879 | * Close down the windowing system |
| 1880 | */ |
| 1881 | void UnInitWindowSystem() |
| 1882 | { |
| 1883 | UnshowCriticalError(); |
| 1884 | |
| 1885 | for (Window *w : Window::Iterate()) w->Close(); |
| 1886 | |
| 1887 | Window::DeleteClosedWindows(); |
| 1888 | |
| 1889 | assert(_z_windows.empty()); |
| 1890 | } |
| 1891 | |
| 1892 | /** |
| 1893 | * Reset the windowing system, by means of shutting it down followed by re-initialization |
no test coverage detected