summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xepivot.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/excel/xepivot.cxx')
-rw-r--r--sc/source/filter/excel/xepivot.cxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/sc/source/filter/excel/xepivot.cxx b/sc/source/filter/excel/xepivot.cxx
index 09dadf7f840f..e7a3d2047626 100644
--- a/sc/source/filter/excel/xepivot.cxx
+++ b/sc/source/filter/excel/xepivot.cxx
@@ -56,8 +56,6 @@ using ::com::sun::star::sheet::DataPilotFieldAutoShowInfo;
using ::com::sun::star::sheet::DataPilotFieldLayoutInfo;
using ::com::sun::star::sheet::DataPilotFieldReference;
-
-
// Pivot cache
@@ -92,8 +90,6 @@ static const sal_uInt16 spnPCItemFlags[] =
} // namespace
-
-
XclExpPCItem::XclExpPCItem( const OUString& rText ) :
XclExpRecord( (!rText.isEmpty()) ? EXC_ID_SXSTRING : EXC_ID_SXEMPTY, 0 ),
mnTypeFlag( EXC_PCITEM_DATA_STRING )
@@ -133,8 +129,6 @@ XclExpPCItem::XclExpPCItem( bool bValue ) :
SetBool( bValue );
}
-
-
bool XclExpPCItem::EqualsText( const OUString& rText ) const
{
return rText.isEmpty() ? IsEmpty() : (GetText() && (*GetText() == rText));
@@ -155,8 +149,6 @@ bool XclExpPCItem::EqualsBool( bool bValue ) const
return GetBool() && (*GetBool() == bValue);
}
-
-
void XclExpPCItem::WriteBody( XclExpStream& rStrm )
{
if( const OUString* pText = GetText() )
@@ -193,8 +185,6 @@ void XclExpPCItem::WriteBody( XclExpStream& rStrm )
}
}
-
-
XclExpPCField::XclExpPCField(
const XclExpRoot& rRoot, const XclExpPivotCache& rPCache, sal_uInt16 nFieldIdx,
const ScDPObject& rDPObj, const ScRange& rRange ) :
@@ -624,8 +614,6 @@ void XclExpPCField::WriteBody( XclExpStream& rStrm )
rStrm << maFieldInfo;
}
-
-
XclExpPivotCache::XclExpPivotCache( const XclExpRoot& rRoot, const ScDPObject& rDPObj, sal_uInt16 nListIdx ) :
XclExpRoot( rRoot ),
mnListIdx( nListIdx ),
@@ -917,8 +905,6 @@ void XclExpPivotCache::WriteSxindexlistList( XclExpStream& rStrm ) const
namespace {
-
-
/** Returns a display string for a data field containing the field name and aggregation function. */
OUString lclGetDataFieldCaption( const OUString& rFieldName, GeneralFunction eFunc )
{
@@ -947,12 +933,8 @@ OUString lclGetDataFieldCaption( const OUString& rFieldName, GeneralFunction eFu
return( aCaption );
}
-
-
} // namespace
-
-
XclExpPTItem::XclExpPTItem( const XclExpPCField& rCacheField, sal_uInt16 nCacheIdx ) :
XclExpRecord( EXC_ID_SXVI, 8 ),
mpCacheItem( rCacheField.GetItem( nCacheIdx ) )
@@ -994,8 +976,6 @@ void XclExpPTItem::WriteBody( XclExpStream& rStrm )
rStrm << maItemInfo;
}
-
-
XclExpPTField::XclExpPTField( const XclExpPivotTable& rPTable, sal_uInt16 nCacheIdx ) :
mrPTable( rPTable ),
mpCacheField( rPTable.GetCacheField( nCacheIdx ) )
@@ -1241,8 +1221,6 @@ void XclExpPTField::WriteSxvdex( XclExpStream& rStrm ) const
rStrm.EndRecord();
}
-
-
XclExpPivotTable::XclExpPivotTable( const XclExpRoot& rRoot, const ScDPObject& rDPObj, const XclExpPivotCache& rPCache, size_t nId ) :
XclExpRoot( rRoot ),
mrPCache( rPCache ),
@@ -1798,8 +1776,6 @@ void XclExpPivotTable::WriteSxViewEx9( XclExpStream& rStrm ) const
}
}
-
-
namespace {
const SCTAB EXC_PTMGR_PIVOTCACHES = SCTAB_MAX;
@@ -1840,8 +1816,6 @@ void XclExpPivotRecWrapper::SaveXml( XclExpXmlStream& rStrm )
} // namespace
-
-
XclExpPivotTableManager::XclExpPivotTableManager( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot ),
mbShareCaches( true )
@@ -1950,6 +1924,4 @@ const XclExpPivotCache* XclExpPivotTableManager::CreatePivotCache( const ScDPObj
return 0;
}
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */