diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-08-04 00:20:56 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-08-04 00:20:56 -0400 |
commit | c788c07dcf3a98f0656d1eb5f56c0058a0778f4e (patch) | |
tree | 52e3a2338d603ceb8c712259c40549d1b36491d1 /sc | |
parent | 55e9a1db54281e8e657ba2e8878c6e8b77e138dc (diff) |
Indentation "fix".
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/inc/eeparser.hxx | 44 |
1 files changed, 23 insertions, 21 deletions
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(); + } }; |