1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

Linux/MacOSX: remove unecessary XML resource string replacement of %hs, not needed since Unicode rewrite.

This commit is contained in:
Mounir IDRASSI
2016-01-25 01:44:03 +01:00
parent 5a555deb74
commit 84ee7076d9
3 changed files with 0 additions and 6 deletions

View File

@@ -252,7 +252,6 @@ namespace VeraCrypt
// Ask user to select backup file path
wxString confirmMsg = LangString["CONFIRM_VOL_HEADER_BAK"];
confirmMsg.Replace (L"%hs", L"%s");
if (!AskYesNo (wxString::Format (confirmMsg, wstring (*volumePath).c_str()), true))
return;
@@ -1384,7 +1383,6 @@ namespace VeraCrypt
// Restore header from an external backup
wxString confirmMsg = LangString["CONFIRM_VOL_HEADER_RESTORE"];
confirmMsg.Replace (L"%hs", L"%s");
if (!AskYesNo (wxString::Format (confirmMsg, wstring (*volumePath).c_str()), true, true))
return;