mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-10 21:23:40 +01:00
Linux/MacOSX: Fix build error when using strict wxWidgets library that doesn't allow implicit conversions.
This commit is contained in:
parent
646679da4d
commit
1290e7836f
@ -401,7 +401,7 @@ namespace VeraCrypt
|
||||
ArgNewKeyfiles = ToKeyfileList (str);
|
||||
|
||||
if (parser.Found (L"new-password", &str))
|
||||
ArgNewPassword = ToUTF8Password (str);
|
||||
ArgNewPassword = ToUTF8Password (str.c_str());
|
||||
|
||||
if (parser.Found (L"new-pim", &str))
|
||||
{
|
||||
@ -440,7 +440,7 @@ namespace VeraCrypt
|
||||
{
|
||||
if (Preferences.UseStandardInput)
|
||||
throw_err (L"--password cannot be used with --stdin");
|
||||
ArgPassword = ToUTF8Password (str);
|
||||
ArgPassword = ToUTF8Password (str.c_str());
|
||||
}
|
||||
|
||||
if (parser.Found (L"pim", &str))
|
||||
@ -481,7 +481,7 @@ namespace VeraCrypt
|
||||
|
||||
if (parser.Found (L"protection-password", &str))
|
||||
{
|
||||
ArgMountOptions.ProtectionPassword = ToUTF8Password (str);
|
||||
ArgMountOptions.ProtectionPassword = ToUTF8Password (str.c_str());
|
||||
ArgMountOptions.Protection = VolumeProtection::HiddenVolumeReadOnly;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user