mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 02:44:13 +08:00
@ -188,7 +188,7 @@ namespace DocFileFormat
|
||||
stream->seek(pcd.fc);
|
||||
stream->read(bytes, cb);
|
||||
|
||||
FormatUtils::GetSTLCollectionFromBytes<std::vector<wchar_t> >(piecePairs, bytes, cb, pcd.code_page);
|
||||
FormatUtils::GetSTLCollectionFromBytes(piecePairs, bytes, cb, pcd.code_page);
|
||||
|
||||
RELEASEARRAYOBJECTS(bytes);
|
||||
}
|
||||
@ -234,7 +234,7 @@ namespace DocFileFormat
|
||||
wordStream->read( bytes, cb);
|
||||
|
||||
//get the chars
|
||||
FormatUtils::GetSTLCollectionFromBytes<std::vector<wchar_t>>( encodingChars, bytes, cb, pcd.code_page );
|
||||
FormatUtils::GetSTLCollectionFromBytes( encodingChars, bytes, cb, pcd.code_page );
|
||||
|
||||
RELEASEARRAYOBJECTS( bytes );
|
||||
}
|
||||
@ -253,7 +253,7 @@ namespace DocFileFormat
|
||||
wordStream->read( bytes, cb);
|
||||
|
||||
//get the chars
|
||||
FormatUtils::GetSTLCollectionFromBytes<std::vector<wchar_t>>( encodingChars, bytes, cb, pcd.code_page );
|
||||
FormatUtils::GetSTLCollectionFromBytes( encodingChars, bytes, cb, pcd.code_page );
|
||||
|
||||
RELEASEARRAYOBJECTS( bytes );
|
||||
}
|
||||
@ -272,7 +272,7 @@ namespace DocFileFormat
|
||||
wordStream->read( bytes, cb);
|
||||
|
||||
//get the chars
|
||||
FormatUtils::GetSTLCollectionFromBytes<std::vector<wchar_t>>(encodingChars, bytes, cb, pcd.code_page);
|
||||
FormatUtils::GetSTLCollectionFromBytes(encodingChars, bytes, cb, pcd.code_page);
|
||||
|
||||
RELEASEARRAYOBJECTS(bytes);
|
||||
|
||||
@ -295,7 +295,7 @@ namespace DocFileFormat
|
||||
wordStream->read( bytes, cb );
|
||||
|
||||
//get the chars
|
||||
FormatUtils::GetSTLCollectionFromBytes<std::vector<wchar_t>>( encodingChars, bytes, cb, pcd.code_page );
|
||||
FormatUtils::GetSTLCollectionFromBytes( encodingChars, bytes, cb, pcd.code_page );
|
||||
|
||||
RELEASEARRAYOBJECTS( bytes );
|
||||
|
||||
@ -484,7 +484,7 @@ namespace DocFileFormat
|
||||
word->read(bytes, size);
|
||||
|
||||
|
||||
FormatUtils::GetSTLCollectionFromBytes<std::vector<wchar_t>>(encodingChars, bytes, size, coding);
|
||||
FormatUtils::GetSTLCollectionFromBytes(encodingChars, bytes, size, coding);
|
||||
|
||||
RELEASEARRAYOBJECTS(bytes);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user