summaryrefslogtreecommitdiffstats
path: root/sc/source/filter
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2011-08-04 00:20:56 -0400
committerKohei Yoshida <kohei.yoshida@suse.com>2011-08-04 00:20:56 -0400
commitc788c07dcf3a98f0656d1eb5f56c0058a0778f4e (patch)
tree52e3a2338d603ceb8c712259c40549d1b36491d1 /sc/source/filter
parentRemoved unnecessary condition checks. (diff)
downloadcore-c788c07dcf3a98f0656d1eb5f56c0058a0778f4e.tar.gz
core-c788c07dcf3a98f0656d1eb5f56c0058a0778f4e.zip
Indentation "fix".
Diffstat (limited to 'sc/source/filter')
-rw-r--r--sc/source/filter/inc/eeparser.hxx44
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();
+ }
};