This commit is contained in:
ElenaSubbotina
2017-02-17 16:33:19 +03:00
parent 305ebda78d
commit 9a8d3edbef
3 changed files with 4 additions and 3 deletions

View File

@ -176,11 +176,11 @@ namespace OOX
std::wstring lowerFileName = XmlUtils::GetLower(m_strFilename);
CArray<std::wstring> trueArray;
std::vector<std::wstring> trueArray;
NSDirectory::GetFiles2(fileDirectory, trueArray);
for (int i = 0; i < trueArray.GetCount(); i++)
for (size_t i = 0; i < trueArray.size(); i++)
{
std::wstring lowerTest = XmlUtils::GetLower(trueArray[i]);