summaryrefslogtreecommitdiff
path: root/sc/source/filter/oox/pivottablebuffer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/oox/pivottablebuffer.cxx')
-rw-r--r--sc/source/filter/oox/pivottablebuffer.cxx30
1 files changed, 0 insertions, 30 deletions
diff --git a/sc/source/filter/oox/pivottablebuffer.cxx b/sc/source/filter/oox/pivottablebuffer.cxx
index 72a7c06b6661..7b18a69ec564 100644
--- a/sc/source/filter/oox/pivottablebuffer.cxx
+++ b/sc/source/filter/oox/pivottablebuffer.cxx
@@ -52,8 +52,6 @@
namespace oox {
namespace xls {
-
-
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::sheet;
using namespace ::com::sun::star::table;
@@ -61,8 +59,6 @@ using namespace ::com::sun::star::uno;
using namespace com::sun::star;
-
-
namespace {
const sal_Int32 OOX_PT_DATALAYOUTFIELD = -2; /// Placeholder index of data layout field.
@@ -70,8 +66,6 @@ const sal_Int32 OOX_PT_DATALAYOUTFIELD = -2; /// Placehol
const sal_Int32 OOX_PT_PREVIOUS_ITEM = 0x001000FC; /// Calculation of data item result is based on previous item.
const sal_Int32 OOX_PT_NEXT_ITEM = 0x001000FD; /// Calculation of data item result is based on next item.
-
-
const sal_uInt32 BIFF12_PTFIELD_DATAFIELD = 0x00000008;
const sal_uInt32 BIFF12_PTFIELD_DEFAULT = 0x00000100;
const sal_uInt32 BIFF12_PTFIELD_SUM = 0x00000200;
@@ -158,8 +152,6 @@ const sal_uInt8 BIFF12_PTDEF_COLAXIS = 2;
} // namespace
-
-
PTFieldItemModel::PTFieldItemModel() :
mnCacheItem( -1 ),
mnType( XML_data ),
@@ -176,8 +168,6 @@ void PTFieldItemModel::setBiffType( sal_uInt16 nType )
mnType = STATIC_ARRAY_SELECT( spnTypes, nType, XML_data );
}
-
-
PTFieldModel::PTFieldModel() :
mnAxis( XML_TOKEN_INVALID ),
mnNumFmtId( 0 ),
@@ -224,16 +214,12 @@ void PTFieldModel::setBiffAxis( sal_uInt8 nAxis )
mnAxis = STATIC_ARRAY_SELECT( spnAxisIds, nAxis, XML_TOKEN_INVALID );
}
-
-
PTPageFieldModel::PTPageFieldModel() :
mnField( -1 ),
mnItem( BIFF12_PTPAGEFIELD_MULTIITEMS )
{
}
-
-
PTDataFieldModel::PTDataFieldModel() :
mnField( -1 ),
mnSubtotal( XML_sum ),
@@ -256,8 +242,6 @@ void PTDataFieldModel::setBiffShowDataAs( sal_Int32 nShowDataAs )
mnShowDataAs = STATIC_ARRAY_SELECT( spnShowDataAs, nShowDataAs, XML_TOKEN_INVALID );
}
-
-
PivotTableField::PivotTableField( PivotTable& rPivotTable, sal_Int32 nFieldIndex ) :
WorkbookHelper( rPivotTable ),
mrPivotTable( rPivotTable ),
@@ -747,8 +731,6 @@ Reference< XDataPilotField > PivotTableField::convertRowColPageField( sal_Int32
return xDPField;
}
-
-
PTFilterModel::PTFilterModel() :
mfValue( 0.0 ),
mnField( -1 ),
@@ -762,8 +744,6 @@ PTFilterModel::PTFilterModel() :
{
}
-
-
PivotTableFilter::PivotTableFilter( const PivotTable& rPivotTable ) :
WorkbookHelper( rPivotTable ),
mrPivotTable( rPivotTable )
@@ -865,8 +845,6 @@ void PivotTableFilter::finalizeImport()
}
}
-
-
PTDefinitionModel::PTDefinitionModel() :
mnCacheId( -1 ),
mnDataPosition( 0 ),
@@ -902,8 +880,6 @@ PTDefinitionModel::PTDefinitionModel() :
{
}
-
-
PTLocationModel::PTLocationModel() :
mnFirstHeaderRow( 0 ),
mnFirstDataRow( 0 ),
@@ -913,8 +889,6 @@ PTLocationModel::PTLocationModel() :
{
}
-
-
PivotTable::PivotTable( const WorkbookHelper& rHelper ) :
WorkbookHelper( rHelper ),
mpDPObject(NULL),
@@ -1345,8 +1319,6 @@ void PivotTable::importFields( IndexVector& orFields, SequenceInputStream& rStrm
orFields.push_back( rStrm.readInt32() );
}
-
-
PivotTableBuffer::PivotTableBuffer( const WorkbookHelper& rHelper ) :
WorkbookHelper( rHelper )
{
@@ -1364,8 +1336,6 @@ void PivotTableBuffer::finalizeImport()
maTables.forEachMem( &PivotTable::finalizeImport );
}
-
-
} // namespace xls
} // namespace oox