diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-06-16 11:02:46 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-06-16 10:51:50 -0400 |
commit | fa02b473132932c200be1750d1a5b1de14ea2383 (patch) | |
tree | 8e6afbd86be3614afaf3cfc4f67f5c63b2558967 /src/ui_interface.h | |
parent | 4b30c41b4ebf2eb70d8a3cd99cf4d05d405eec81 (diff) |
refactor: Use AbortError in FatalError
This is needed for consistency with AbortNode
Diffstat (limited to 'src/ui_interface.h')
-rw-r--r-- | src/ui_interface.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui_interface.h b/src/ui_interface.h index 9f70d7b35c..356d30eaf6 100644 --- a/src/ui_interface.h +++ b/src/ui_interface.h @@ -122,6 +122,7 @@ void InitWarning(const bilingual_str& str); /** Show error message **/ bool InitError(const bilingual_str& str); +constexpr auto AbortError = InitError; extern CClientUIInterface uiInterface; |