Linux/MacOSX: Fix build error when using strict wxWidgets library that doesn't allow implicit conversions.

This commit is contained in:
Axel Köllhofer 2016-03-19 18:59:40 +01:00 committed by Mounir IDRASSI
parent 646679da4d
commit 1290e7836f
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}