From ea1a038fe31217b43723b517facc5ac51d6b6959 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Wed, 7 May 2014 21:37:38 +0200 Subject: sw: fix indentation in rtfstringbuffer Change-Id: Ie1029a03e614aceaeda10a762183cb06e93c1639 --- sw/source/filter/ww8/rtfstringbuffer.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sw') 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); } -- cgit