diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2017-09-27 14:20:25 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2017-09-28 08:55:04 +0200 |
commit | e80aef4e032f08ef0c4cfbb028bf83b81002f112 (patch) | |
tree | abb1d7e2ae7f46623d2769b5820e716ad063b4eb /shell/source/win32/zipfile | |
parent | 09917566b6ce86ea65a246f2055b5d1f41df4e76 (diff) |
shell: use Unicode on Windows
Change-Id: I9f7962db320f8832879ba327108425a7592b4b77
Reviewed-on: https://gerrit.libreoffice.org/42885
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'shell/source/win32/zipfile')
-rw-r--r-- | shell/source/win32/zipfile/zipfile.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/source/win32/zipfile/zipfile.cxx b/shell/source/win32/zipfile/zipfile.cxx index 3bff687982dc..f1fca5276d30 100644 --- a/shell/source/win32/zipfile/zipfile.cxx +++ b/shell/source/win32/zipfile/zipfile.cxx @@ -351,7 +351,7 @@ struct stricmp IOException if the specified file doesn't exist AccessViolationException if read access to the file is denied */ -bool ZipFile::IsZipFile(const std::string& /*FileName*/) +bool ZipFile::IsZipFile(const std::wstring& /*FileName*/) { return true; } @@ -377,7 +377,7 @@ bool ZipFile::IsZipFile(void* /*stream*/) IOException if the specified file doesn't exist or is no zip file AccessViolationException if read access to the file is denied */ -bool ZipFile::IsValidZipFileVersionNumber(const std::string& /*FileName*/) +bool ZipFile::IsValidZipFileVersionNumber(const std::wstring& /*FileName*/) { return true; } @@ -400,7 +400,7 @@ bool ZipFile::IsValidZipFileVersionNumber(void* /* stream*/) WrongZipVersionException if the zip file cannot be uncompressed with the used zlib version */ -ZipFile::ZipFile(const std::string &FileName) : +ZipFile::ZipFile(const std::wstring &FileName) : m_pStream(nullptr), m_bShouldFree(true) { |