diff options
author | Dan Gudmundsson <[email protected]> | 2015-05-22 06:47:58 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2015-05-22 06:47:58 +0200 |
commit | 709390cb5426d12b0651f134dce7232006a7c3c8 (patch) | |
tree | 77251dab002e748b46c51691fef5b2064d06428c /lib/wx/c_src/wxe_impl.h | |
parent | 31d663b47a20f2fff9b6a35f91d1ca2b28ce8b9f (diff) | |
parent | 62b24429f440c61ad930d919e49ec637d3580096 (diff) | |
download | otp-709390cb5426d12b0651f134dce7232006a7c3c8.tar.gz otp-709390cb5426d12b0651f134dce7232006a7c3c8.tar.bz2 otp-709390cb5426d12b0651f134dce7232006a7c3c8.zip |
Merge branch 'dgud/wx/raise-during-stop/OTP-12734'
* dgud/wx/raise-during-stop/OTP-12734:
wx: Fix raise during emulator stoppage
Diffstat (limited to 'lib/wx/c_src/wxe_impl.h')
-rw-r--r-- | lib/wx/c_src/wxe_impl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/wx/c_src/wxe_impl.h b/lib/wx/c_src/wxe_impl.h index a0a1c84718..b251d5f0f9 100644 --- a/lib/wx/c_src/wxe_impl.h +++ b/lib/wx/c_src/wxe_impl.h @@ -46,7 +46,8 @@ typedef wxString wxeLocaleC; #define WXE_NOT_INITIATED 0 #define WXE_INITIATED 1 -#define WXE_EXITED 2 +#define WXE_EXITING 2 +#define WXE_EXITED 3 #define WXE_ERROR -1 void send_msg(const char *, const wxString *); // For debugging and error msgs |