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

Linux: Fix gcc-6 compilation errors.

This commit is contained in:
Mounir IDRASSI
2016-05-13 21:53:50 +02:00
parent 723768137b
commit 942cf1635a
3 changed files with 7 additions and 7 deletions

View File

@@ -1599,7 +1599,7 @@ namespace VeraCrypt
FilePath GraphicUserInterface::SelectVolumeFile (wxWindow *parent, bool saveMode, const DirectoryPath &directory) const
{
list < pair <wstring, wstring> > extensions;
extensions.push_back (make_pair (L"tc", LangString["TC_VOLUMES"]));
extensions.push_back (make_pair (L"tc", LangString["TC_VOLUMES"].ToStdWstring()));
FilePathList selFiles = Gui->SelectFiles (parent, LangString[saveMode ? "OPEN_NEW_VOLUME" : "OPEN_VOL_TITLE"], saveMode, false, extensions, directory);