Show the first error of the queue. */
| 262 | |
| 263 | /** Show the first error of the queue. */ |
| 264 | void ShowFirstError() |
| 265 | { |
| 266 | _window_system_initialized = true; |
| 267 | if (!_error_list.empty()) { |
| 268 | new ErrmsgWindow(_error_list.front()); |
| 269 | _error_list.pop_front(); |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | /** |
| 274 | * Unshow the critical error. This has to happen when a critical |
no test coverage detected