remove template
This commit is contained in:
Elena.Subbotina
2024-02-08 15:09:27 +03:00
parent aaf9772805
commit ea9ef2349d
17 changed files with 431 additions and 178 deletions

View File

@ -54,11 +54,11 @@ namespace DocFileFormat
//It's a real string table
if (reader->nWordVersion > 0)
{
FormatUtils::GetSTLCollectionFromBytes<WideString>( newObject, bytes, length, ENCODING_WINDOWS_1250 );
FormatUtils::GetWStringFromBytes( *newObject, bytes, length, ENCODING_WINDOWS_1250 );
}
else
{
FormatUtils::GetSTLCollectionFromBytes<WideString>( newObject, bytes, length, ENCODING_UTF16 );
FormatUtils::GetWStringFromBytes( *newObject, bytes, length, ENCODING_UTF16 );
}
RELEASEARRAYOBJECTS( bytes );