mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 01:04:34 +08:00
.
This commit is contained in:
@ -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]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user