diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-05-13 21:53:50 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-05-13 22:27:16 +0200 |
commit | 942cf1635a88bd099d9f6108d8c42c15fa0dee0c (patch) | |
tree | 832559af3d1fb3023eba9dea72aff936735cba8d /src/Main/GraphicUserInterface.cpp | |
parent | 723768137bafb3d75c269f91702fbdf3baa43e15 (diff) | |
download | VeraCrypt-942cf1635a88bd099d9f6108d8c42c15fa0dee0c.tar.gz VeraCrypt-942cf1635a88bd099d9f6108d8c42c15fa0dee0c.zip |
Linux: Fix gcc-6 compilation errors.
Diffstat (limited to 'src/Main/GraphicUserInterface.cpp')
-rw-r--r-- | src/Main/GraphicUserInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main/GraphicUserInterface.cpp b/src/Main/GraphicUserInterface.cpp index cd5c6fe9..d15e7375 100644 --- a/src/Main/GraphicUserInterface.cpp +++ b/src/Main/GraphicUserInterface.cpp @@ -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); |