* Schedule a list of errors. * Note: This does not try to display the error now. This is useful if the window system is not yet running. * @param datas Error message datas; cleared afterwards */
| 372 | * @param datas Error message datas; cleared afterwards |
| 373 | */ |
| 374 | void ScheduleErrorMessage(ErrorList &datas) |
| 375 | { |
| 376 | _error_list.splice(_error_list.end(), datas); |
| 377 | } |
| 378 | |
| 379 | /** |
| 380 | * Schedule an error. |
no test coverage detected