From c788c07dcf3a98f0656d1eb5f56c0058a0778f4e Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Thu, 4 Aug 2011 00:20:56 -0400 Subject: Indentation "fix". --- sc/source/filter/inc/eeparser.hxx | 44 ++++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 21 deletions(-) (limited to 'sc') diff --git a/sc/source/filter/inc/eeparser.hxx b/sc/source/filter/inc/eeparser.hxx index 2e9400221e5a..526bc0dc5619 100644 --- a/sc/source/filter/inc/eeparser.hxx +++ b/sc/source/filter/inc/eeparser.hxx @@ -80,27 +80,29 @@ struct ScEEParseEntry bool bHasGraphic:1; // HTML any image loaded bool bEntirePara:1; // true = use entire paragraph, false = use selection - ScEEParseEntry( SfxItemPool* pPool ) : - aItemSet( *pPool ), pValStr( NULL ), - pNumStr( NULL ), pName( NULL ), - nCol(SCCOL_MAX), nRow(SCROW_MAX), nTab(0), - nColOverlap(1), nRowOverlap(1), - nOffset(0), nWidth(0), bHasGraphic(false), bEntirePara(true) - {} - ScEEParseEntry( const SfxItemSet& rItemSet ) : - aItemSet( rItemSet ), pValStr( NULL ), - pNumStr( NULL ), pName( NULL ), - nCol(SCCOL_MAX), nRow(SCROW_MAX), nTab(0), - nColOverlap(1), nRowOverlap(1), - nOffset(0), nWidth(0), bHasGraphic(false), bEntirePara(true) - {} - ~ScEEParseEntry() - { - delete pValStr; - delete pNumStr; - delete pName; - maImageList.clear(); - } + ScEEParseEntry( SfxItemPool* pPool ) : + aItemSet( *pPool ), pValStr( NULL ), + pNumStr( NULL ), pName( NULL ), + nCol(SCCOL_MAX), nRow(SCROW_MAX), nTab(0), + nColOverlap(1), nRowOverlap(1), + nOffset(0), nWidth(0), bHasGraphic(false), bEntirePara(true) + {} + + ScEEParseEntry( const SfxItemSet& rItemSet ) : + aItemSet( rItemSet ), pValStr( NULL ), + pNumStr( NULL ), pName( NULL ), + nCol(SCCOL_MAX), nRow(SCROW_MAX), nTab(0), + nColOverlap(1), nRowOverlap(1), + nOffset(0), nWidth(0), bHasGraphic(false), bEntirePara(true) + {} + + ~ScEEParseEntry() + { + delete pValStr; + delete pNumStr; + delete pName; + maImageList.clear(); + } }; -- cgit