summaryrefslogtreecommitdiff
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
commit7cf28a714e23df14654548c1d82d62515ee1a116 (patch)
tree3908fbe44e904bcb7e8d207df3fd9bf6bc6f01b0
parent941640dc5a6813819ba69704e609f6c3ab0a64e4 (diff)
Indentation "fix".
-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 7c444f074..a5a80e1ab 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();
+ }
};