diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2011-03-14 17:51:41 -0400 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2011-03-14 17:51:41 -0400 |
commit | bb06798a8681ba4e62c8e1e7be916e2655db5cae (patch) | |
tree | f670d49750c61582ddd89500cdad6f38b703b2be /sc/inc/pivot.hxx | |
parent | 6f0b90c0f97796d0406ff737f6d4fa36da011c77 (diff) |
More stupid build fixes.
Diffstat (limited to 'sc/inc/pivot.hxx')
-rw-r--r-- | sc/inc/pivot.hxx | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/sc/inc/pivot.hxx b/sc/inc/pivot.hxx index ed69859df546..a71b30629f65 100644 --- a/sc/inc/pivot.hxx +++ b/sc/inc/pivot.hxx @@ -193,26 +193,22 @@ typedef ::std::vector< ScPivotField > ScPivotFieldVector; // ============================================================================ -struct ScPivotFuncData +struct ScDPFuncData { - SCCOL mnCol; + short mnCol; sal_uInt16 mnFuncMask; ::com::sun::star::sheet::DataPilotFieldReference maFieldRef; - explicit ScPivotFuncData( SCCOL nCol, sal_uInt16 nFuncMask ); - explicit ScPivotFuncData( SCCOL nCol, sal_uInt16 nFuncMask, + explicit ScDPFuncData( short nNewCol, sal_uInt16 nNewFuncMask ); + explicit ScDPFuncData( short nNewCol, sal_uInt16 nNewFuncMask, const ::com::sun::star::sheet::DataPilotFieldReference& rFieldRef ); }; -typedef ::std::vector< ScPivotFuncData > ScPivotFuncDataVector; - // ============================================================================ typedef std::vector< ScDPLabelData > ScDPLabelDataVec; typedef std::vector<ScDPName> ScDPNameVec; -// ============================================================================ - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |