mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 02:44:13 +08:00
16 lines
463 B
C++
16 lines
463 B
C++
#include "TextCFException10.h"
|
|
|
|
using namespace PPT;
|
|
|
|
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));
|
|
}
|