x2t version up

This commit is contained in:
ElenaSubbotina
2017-09-25 16:53:39 +03:00
parent e7dae4b381
commit 668d0c2abf
3 changed files with 5 additions and 5 deletions

View File

@ -115,7 +115,7 @@ public:
m_sFileName = m_strTmpDirectory + FILE_SEPARATOR_STR + L"oleObject_xxx.bin";
NSFile::CFileBinary file;
if (file.CreateFile(m_sFileName))
if (file.CreateFileW(m_sFileName))
{
file.WriteFile(pData, decompressedSize);
file.CloseFile();
@ -126,4 +126,4 @@ public:
}
};
};

View File

@ -106,7 +106,7 @@ public:
m_sFileName = m_strTmpDirectory + FILE_SEPARATOR_STR + L"vbaProject.bin";
NSFile::CFileBinary file;
if (file.CreateFile(m_sFileName))
if (file.CreateFileW(m_sFileName))
{
file.WriteFile(pData, decompressedSize);
file.CloseFile();
@ -115,4 +115,4 @@ public:
pData = NULL;
}
};
};