Files
core/MsBinaryFile/PptFile/Records/TextCFException10.cpp
2022-11-28 17:37:12 +03:00

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));
}