Commit 9a8d3edb authored by ElenaSubbotina's avatar ElenaSubbotina

.

parent 305ebda7
......@@ -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]);
......
......@@ -49,6 +49,7 @@
#if defined(__linux__) || defined(_MAC) && !defined(_IOS)
#include <unistd.h>
#include <string.h>
#endif
#ifdef _IOS
......
......@@ -7,7 +7,7 @@
QT -= core
QT -= gui
VERSION = 2.0.3.440
VERSION = 2.0.3.441
DEFINES += INTVER=$$VERSION
TARGET = x2t
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment