Skip to content
Snippets Groups Projects
Commit 78d60025 authored by Trinity_Dejavu's avatar Trinity_Dejavu
Browse files

- fixed : GCC fixes

--HG--
branch : RLVa
parent 3080bd01
No related branches found
No related tags found
No related merge requests found
......@@ -167,7 +167,7 @@ void RlvStrings::initClass()
// Load the default string values
std::vector<std::string> files = gDirUtilp->findSkinnedFilenames(LLDir::XUI, RLV_STRINGS_FILE, LLDir::ALL_SKINS);
m_StringMapPath = (!files.empty()) ? files.front() : LLStringUtil::null;
for (auto itFile = files.cbegin(); itFile != files.cend(); ++itFile)
for (std::vector<std::string>::const_iterator itFile = files.begin(); itFile != files.end(); ++itFile)
{
loadFromFile(*itFile, 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