fix include paths ..

This commit is contained in:
Elena.Subbotina
2022-10-11 09:47:22 +03:00
parent 74615f508e
commit b27a36246d
3 changed files with 6 additions and 6 deletions

View File

@ -30,9 +30,9 @@
*
*/
#include "nativecontrol.h"
#include "../../../core/DesktopEditor/raster/ImageFileFormatChecker.h"
#include "../../../core/DesktopEditor/raster/BgraFrame.h"
#include "../../../core/Common/Network/FileTransporter/include/FileTransporter.h"
#include "../../DesktopEditor/raster/ImageFileFormatChecker.h"
#include "../../DesktopEditor/raster/BgraFrame.h"
#include "../../Common/Network/FileTransporter/include/FileTransporter.h"
CImagesWorker::CImagesWorker(const std::wstring& sFolder)
{

View File

@ -36,7 +36,7 @@
#include <string>
#include <vector>
#include "../../../core/DesktopEditor/graphics/pro/Fonts.h"
#include "../../DesktopEditor/graphics/pro/Fonts.h"
#include "../../Common/kernel_config.h"

View File

@ -871,7 +871,7 @@ void ECMAWriteProtect::Generate()
_buf pHashBuf = HashAppend(pSalt, pPassword, data.hashAlgorithm);
for (int i = 0; i < data.spinCount; i++)
for (_UINT32 i = 0; i < data.spinCount; i++)
{
_buf iterator((unsigned char*)&i, 4, false);
pHashBuf = HashAppend(pHashBuf, iterator, data.hashAlgorithm);
@ -913,7 +913,7 @@ bool ECMAWriteProtect::Verify()
_buf pHashTest = HashAppend(pSalt, pPassword, data.hashAlgorithm);
for (int i = 0; i < data.spinCount; i++)
for (_UINT32 i = 0; i < data.spinCount; i++)
{
_buf iterator((unsigned char*)&i, 4, false);
pHashTest = HashAppend(pHashTest, iterator, data.hashAlgorithm);