sc/source/filter/excel/xepivot.cxx | 5 ++--- sc/source/filter/inc/xepivot.hxx | 1 - 2 files changed, 2 insertions(+), 4 deletions(-)
New commits: commit 552b5e1f230fbbf49f3624d3bc31cab32898b16c Author: Tor Lillqvist <[email protected]> Date: Sat Aug 30 09:47:47 2014 +0300 WaE: private field 'mnId' is not used Change-Id: Id3e9c2c380b8c2388eda9e650dae635bfbae7711 diff --git a/sc/source/filter/excel/xepivot.cxx b/sc/source/filter/excel/xepivot.cxx index 34937da..c330d64 100644 --- a/sc/source/filter/excel/xepivot.cxx +++ b/sc/source/filter/excel/xepivot.cxx @@ -1184,14 +1184,13 @@ void XclExpPTField::WriteSxvdex( XclExpStream& rStrm ) const rStrm.EndRecord(); } -XclExpPivotTable::XclExpPivotTable( const XclExpRoot& rRoot, const ScDPObject& rDPObj, const XclExpPivotCache& rPCache, size_t nId ) : +XclExpPivotTable::XclExpPivotTable( const XclExpRoot& rRoot, const ScDPObject& rDPObj, const XclExpPivotCache& rPCache, size_t ) : XclExpRoot( rRoot ), mrPCache( rPCache ), maDataOrientField( *this, EXC_SXIVD_DATA ), mnOutScTab( 0 ), mbValid( false ), - mbFilterBtn( false ), - mnId( nId ) + mbFilterBtn( false ) { const ScRange& rOutScRange = rDPObj.GetOutRange(); if( GetAddressConverter().ConvertRange( maPTInfo.maOutXclRange, rOutScRange, true ) ) diff --git a/sc/source/filter/inc/xepivot.hxx b/sc/source/filter/inc/xepivot.hxx index bf12728..07ce8ee 100644 --- a/sc/source/filter/inc/xepivot.hxx +++ b/sc/source/filter/inc/xepivot.hxx @@ -406,7 +406,6 @@ private: SCTAB mnOutScTab; /// Sheet index of the output range. bool mbValid; /// true = The pivot table is valid for export. bool mbFilterBtn; /// true = DataPilot has filter button. - size_t mnId; /// Stream ID }; /** The main class for pivot table export. _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
