Merge pull request #1141

5d2d6ad UTF-8 support for filenames and paths under Windows
pull/2/head
luigi1111 6 years ago
commit a8ba815fb3
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -221,6 +221,13 @@ win32 {
-lboost_regex-mt-s \
-lboost_chrono-mt-s \
-lboost_program_options-mt-s \
-lboost_locale-mt-s \
-licuio \
-licuin \
-licuuc \
-licudt \
-licutu \
-liconv \
-lssl \
-lcrypto \
-Wl,-Bdynamic \

@ -185,14 +185,6 @@ ColumnLayout {
return false;
}
// Don't allow non ascii characters in path on windows platforms until supported by Wallet2
if (isWindows) {
if (!isAscii(path)) {
walletErrorDialog.text = qsTr("Non-ASCII characters are not allowed in wallet path or account name") + translationManager.emptyString;
walletErrorDialog.open();
return false;
}
}
return true;
}