Skip to content
Snippets Groups Projects
Commit bb8609fa authored by andreykproductengine's avatar andreykproductengine
Browse files

MAINT-5100 Fixed viewer not finding sky files at login

parent 561cee12
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,11 @@ class LLDirIterator::Impl ...@@ -51,7 +51,11 @@ class LLDirIterator::Impl
LLDirIterator::Impl::Impl(const std::string &dirname, const std::string &mask) LLDirIterator::Impl::Impl(const std::string &dirname, const std::string &mask)
: mIsValid(false) : mIsValid(false)
{ {
#ifdef LL_WINDOWS // or BOOST_WINDOWS_API
fs::path dir_path(utf8str_to_utf16str(dirname));
#else
fs::path dir_path(dirname); fs::path dir_path(dirname);
#endif
bool is_dir = false; bool is_dir = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment