diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-08-30 09:47:47 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-08-30 10:04:19 +0300 |
commit | 552b5e1f230fbbf49f3624d3bc31cab32898b16c (patch) | |
tree | f512c3060a13ab1fa5fa56bb54b3001d114e6315 /sc/source | |
parent | fcc6e8ae56d539ef92bfb917a52ac0638b3db25f (diff) |
WaE: private field 'mnId' is not used
Change-Id: Id3e9c2c380b8c2388eda9e650dae635bfbae7711
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/filter/excel/xepivot.cxx | 5 | ||||
-rw-r--r-- | sc/source/filter/inc/xepivot.hxx | 1 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sc/source/filter/excel/xepivot.cxx b/sc/source/filter/excel/xepivot.cxx index 34937da86ee4..c330d64ae16f 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 bf12728bf135..07ce8eee3c38 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. |