updating wxWidgets to 3.1.6

This commit is contained in:
Cheng 2022-05-04 22:03:46 +10:00
parent dc438a22eb
commit 1b3bb9f35e
No known key found for this signature in database
GPG Key ID: D51301E176B31828
4 changed files with 12 additions and 5 deletions

@ -1 +1 @@
Subproject commit 3033271213aa083b49ec88c23d815af176fc12a2 Subproject commit 561e556dad078af581f338fe3de9ee6362d28b16

View File

@ -62,7 +62,7 @@ constexpr bool b_WINDOWS = false;
static_assert(wxUSE_UNSAFE_WXSTRING_CONV == 1, static_assert(wxUSE_UNSAFE_WXSTRING_CONV == 1,
R"(In fully utf environment, (wallet.manifest plus R"(In fully utf environment, (wallet.manifest plus
/utf-8 compile option) all string conversions are safe.)"); /utf-8 compile option) all string conversions are safe.)");
static_assert(wxMAJOR_VERSION == 3 && wxMINOR_VERSION == 1 && wxRELEASE_NUMBER == 5 && wxSUBRELEASE_NUMBER == 0, "expecting wxWidgets 3.1.5"); static_assert(wxMAJOR_VERSION == 3 && wxMINOR_VERSION == 1 && wxRELEASE_NUMBER == 6 && wxSUBRELEASE_NUMBER == 0, "expecting wxWidgets 3.1.5");
static_assert(wxUSE_IPV6 == 1, "IP6 unavailable in wxWidgets"); static_assert(wxUSE_IPV6 == 1, "IP6 unavailable in wxWidgets");
static_assert(WXWIN_COMPATIBILITY_3_0 == 0, "wxWidgets api out of date"); static_assert(WXWIN_COMPATIBILITY_3_0 == 0, "wxWidgets api out of date");
static_assert(wxUSE_COMPILER_TLS == (b_WINDOWS ? 2 : 1), "out of date workarounds in wxWidgets for windows bugs"); static_assert(wxUSE_COMPILER_TLS == (b_WINDOWS ? 2 : 1), "out of date workarounds in wxWidgets for windows bugs");

View File

@ -115,6 +115,13 @@ echo on
.\x64\Debug\wallet.exe --complete --test .\x64\Debug\wallet.exe --complete --test
echo off echo off
IF %ERRORLEVEL% NEQ 0 ( IF %ERRORLEVEL% NEQ 0 (
echo failed unit test echo failed unit test on debug build
) ELSE ( ) ELSE (
echo passed unit test) echo passed unit test on debug build)
echo on
.\x64\Release\wallet.exe --complete --test
echo off
IF %ERRORLEVEL% NEQ 0 (
echo failed unit test on release build
) ELSE (
echo passed unit test on release build)

@ -1 +1 @@
Subproject commit 9c0a8be1dc32063d91ed1901fd5fcd54f4f955a1 Subproject commit 35a6d7b15fedfdb5198bb6c28b31cda33b2c2a76