mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-10 23:03:14 +08:00
15 lines
442 B
C++
15 lines
442 B
C++
#include "TextCFException10.h"
|
|
|
|
|
|
void STextCFException10::ReadFromStream(POLE::Stream *pStream)
|
|
{
|
|
m_masks.ReadFromStream(pStream);
|
|
|
|
if (m_masks.m_newEATypeface)
|
|
m_newEAFontRef = new USHORT(StreamUtils::ReadSHORT(pStream));
|
|
if (m_masks.m_csTypeface)
|
|
m_newEAFontRef = new USHORT(StreamUtils::ReadSHORT(pStream));
|
|
if (m_masks.m_pp11ext)
|
|
m_pp11ext = new _UINT32(StreamUtils::ReadDWORD(pStream));
|
|
}
|