mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-28 14:03:29 +01:00
Linux/MacOSX: fix wrong AskYesNo method parameters use caused by mistake in parenthesis use.
This commit is contained in:
parent
b8a2e808c6
commit
5a555deb74
@ -930,7 +930,7 @@ namespace VeraCrypt
|
|||||||
wxString confirmMsg = LangString["OVERWRITEPROMPT"];
|
wxString confirmMsg = LangString["OVERWRITEPROMPT"];
|
||||||
confirmMsg.Replace (L"%hs", L"%s");
|
confirmMsg.Replace (L"%hs", L"%s");
|
||||||
|
|
||||||
if (!Gui->AskYesNo (wxString::Format (confirmMsg, wstring (SelectedVolumePath).c_str(), false, true)))
|
if (!Gui->AskYesNo (wxString::Format (confirmMsg, wstring (SelectedVolumePath).c_str()), false, true))
|
||||||
return GetCurrentStep();
|
return GetCurrentStep();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user