diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2012-02-17 18:02:08 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2012-02-22 14:02:04 -0500 |
commit | f401f8ac518323e08d77507022b9c8a0703f9b14 (patch) | |
tree | c8a7dba04a718236ce1e00d2914ae5e62784fdb2 /sc/inc/pivot.hxx | |
parent | f57bd35e915aa5d000aed2b5c4c00f1c9491e551 (diff) |
Correctly display layout name of data fields.
Diffstat (limited to 'sc/inc/pivot.hxx')
-rw-r--r-- | sc/inc/pivot.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/inc/pivot.hxx b/sc/inc/pivot.hxx index 2ab04644f2b5..a73c43153261 100644 --- a/sc/inc/pivot.hxx +++ b/sc/inc/pivot.hxx @@ -73,12 +73,13 @@ struct ScDPLabelData; struct PivotField { - SCsCOL nCol; /// 0-based dimension index (not source column index) + SCCOL nCol; /// 0-based dimension index (not source column index) + long mnOriginalDim; sal_uInt16 nFuncMask; sal_uInt8 mnDupCount; ::com::sun::star::sheet::DataPilotFieldReference maFieldRef; - explicit PivotField( SCsCOL nNewCol = 0, sal_uInt16 nNewFuncMask = PIVOT_FUNC_NONE ); + explicit PivotField( SCCOL nNewCol = 0, sal_uInt16 nNewFuncMask = PIVOT_FUNC_NONE ); PivotField( const PivotField& r ); bool operator==( const PivotField& r ) const; |