Kaydet (Commit) ea1a038f authored tarafından Miklos Vajna's avatar Miklos Vajna

sw: fix indentation in rtfstringbuffer

Change-Id: Ie1029a03e614aceaeda10a762183cb06e93c1639
üst c3239f45
......@@ -11,22 +11,22 @@
RtfStringBufferValue::RtfStringBufferValue()
: m_aBuffer(),
m_pFlyFrmFmt(0),
m_pGrfNode(0)
m_pFlyFrmFmt(0),
m_pGrfNode(0)
{
}
RtfStringBufferValue::RtfStringBufferValue(const SwFlyFrmFmt* pFlyFrmFmt, const SwGrfNode* pGrfNode)
: m_aBuffer(),
m_pFlyFrmFmt(pFlyFrmFmt),
m_pGrfNode(pGrfNode)
m_pFlyFrmFmt(pFlyFrmFmt),
m_pGrfNode(pGrfNode)
{
}
void RtfStringBufferValue::makeStringAndClear(RtfAttributeOutput* pAttributeOutput)
{
if (!isGraphic())
pAttributeOutput->m_rExport.Strm().WriteCharPtr( m_aBuffer.makeStringAndClear().getStr() );
pAttributeOutput->m_rExport.Strm().WriteCharPtr(m_aBuffer.makeStringAndClear().getStr());
else
pAttributeOutput->FlyFrameGraphic(m_pFlyFrmFmt, m_pGrfNode);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment