diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-05-07 21:37:38 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-05-07 21:47:14 +0200 |
commit | ea1a038fe31217b43723b517facc5ac51d6b6959 (patch) | |
tree | d7a863891f97291010115884459b7c7611a8d6d5 /sw | |
parent | c3239f45ddd09937c86724213e34f2046a74ff88 (diff) |
sw: fix indentation in rtfstringbuffer
Change-Id: Ie1029a03e614aceaeda10a762183cb06e93c1639
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/rtfstringbuffer.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/filter/ww8/rtfstringbuffer.cxx b/sw/source/filter/ww8/rtfstringbuffer.cxx index 1d652db1faa0..16535f7f4fce 100644 --- a/sw/source/filter/ww8/rtfstringbuffer.cxx +++ b/sw/source/filter/ww8/rtfstringbuffer.cxx @@ -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); } |