Refactoring

This commit is contained in:
Kirill Polyakov
2026-01-19 13:04:45 +03:00
parent 7146c08ef4
commit ebed729f13
109 changed files with 611 additions and 507 deletions

View File

@ -7,9 +7,9 @@ CTextLayout::CTextLayout()
}
bool CTextLayout::Read(CHWPStream& oStream)
bool CTextLayout::Read(CChartStream& oStream)
{
return oStream.ReadBool(m_bWordWrap) && oStream.ReadInt(m_nHorzAlignment) &&
oStream.ReadInt(m_nOrientation) && oStream.ReadInt(m_nVertAlignment);
return oStream.ReadBoolean(m_bWordWrap) && oStream.ReadInteger(m_nHorzAlignment) &&
oStream.ReadInteger(m_nOrientation) && oStream.ReadInteger(m_nVertAlignment);
}
}}