diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2011-03-23 23:11:07 -0400 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2011-03-23 23:11:07 -0400 |
commit | d7d3d778b5e87191fcdaccd12f6f95cd04cce17c (patch) | |
tree | b4e3fb1ae16969c5be7986a1d6b3853d6cb47ef1 /sc/inc/global.hxx | |
parent | 76ec3cad48f1032221188dbe65da10e42db5eea1 (diff) |
Moved ScSubTotalParam from global.* into own files.
Diffstat (limited to 'sc/inc/global.hxx')
-rw-r--r-- | sc/inc/global.hxx | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/sc/inc/global.hxx b/sc/inc/global.hxx index 82e68c5f1c55..c2d70620764d 100644 --- a/sc/inc/global.hxx +++ b/sc/inc/global.hxx @@ -761,39 +761,6 @@ struct ScQueryEntry sal_Bool operator==( const ScQueryEntry& r ) const; }; -struct SC_DLLPUBLIC ScSubTotalParam -{ - SCCOL nCol1; // selected area - SCROW nRow1; - SCCOL nCol2; - SCROW nRow2; - sal_uInt16 nUserIndex; // index into list - bool bRemoveOnly:1; - bool bReplace:1; // replace existing results - bool bPagebreak:1; // page break at change of group - bool bCaseSens:1; // - bool bDoSort:1; // presort - bool bAscending:1; // sort ascending - bool bUserDef:1; // sort user defined - bool bIncludePattern:1; // sort formats - bool bGroupActive[MAXSUBTOTAL]; // active groups - SCCOL nField[MAXSUBTOTAL]; // associated field - SCCOL nSubTotals[MAXSUBTOTAL]; // number of SubTotals - SCCOL* pSubTotals[MAXSUBTOTAL]; // array of columns to be calculated - ScSubTotalFunc* pFunctions[MAXSUBTOTAL]; // array of associated functions - - ScSubTotalParam(); - ScSubTotalParam( const ScSubTotalParam& r ); - - ScSubTotalParam& operator= ( const ScSubTotalParam& r ); - bool operator== ( const ScSubTotalParam& r ) const; - void Clear(); - void SetSubTotals( sal_uInt16 nGroup, - const SCCOL* ptrSubTotals, - const ScSubTotalFunc* ptrFuncions, - sal_uInt16 nCount ); -}; - class ScArea; struct ScConsolidateParam |