mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
fix include paths ..
This commit is contained in:
@ -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)
|
||||
{
|
||||
|
||||
@ -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"
|
||||
|
||||
|
||||
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user