summaryrefslogtreecommitdiff
path: root/sc/source/filter/oox/pivotcachebuffer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/oox/pivotcachebuffer.cxx')
-rw-r--r--sc/source/filter/oox/pivotcachebuffer.cxx32
1 files changed, 0 insertions, 32 deletions
diff --git a/sc/source/filter/oox/pivotcachebuffer.cxx b/sc/source/filter/oox/pivotcachebuffer.cxx
index 3cd2d9036082..454a1acf1299 100644
--- a/sc/source/filter/oox/pivotcachebuffer.cxx
+++ b/sc/source/filter/oox/pivotcachebuffer.cxx
@@ -44,8 +44,6 @@
namespace oox {
namespace xls {
-
-
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::sheet;
using namespace ::com::sun::star::table;
@@ -54,8 +52,6 @@ using namespace ::com::sun::star::util;
using ::oox::core::Relations;
-
-
namespace {
const sal_uInt16 BIFF12_PCDFIELD_SERVERFIELD = 0x0001;
@@ -102,8 +98,6 @@ const sal_uInt8 BIFF12_PCDEFINITION_SUPPORTDRILL = 0x08;
const sal_uInt8 BIFF12_PCDWBSOURCE_HASRELID = 0x01;
const sal_uInt8 BIFF12_PCDWBSOURCE_HASSHEET = 0x02;
-
-
const sal_uInt16 BIFF_PC_NOSTRING = 0xFFFF;
const sal_uInt16 BIFF_PCDFIELD_HASITEMS = 0x0001;
@@ -127,8 +121,6 @@ const sal_uInt16 BIFF_PCDEFINITION_OPTIMIZEMEMORY = 0x0008;
const sal_uInt16 BIFF_PCDEFINITION_BACKGROUNDQUERY = 0x0010;
const sal_uInt16 BIFF_PCDEFINITION_ENABLEREFRESH = 0x0020;
-
-
/** Adjusts the weird date format read from binary streams.
Dates before 1900-Mar-01 are stored including the non-existing leap day
@@ -151,8 +143,6 @@ void lclAdjustBinDateTime( css::util::DateTime& orDateTime )
} // namespace
-
-
PivotCacheItem::PivotCacheItem() :
mnType( XML_m ), mbUnused( false )
{
@@ -305,8 +295,6 @@ OUString PivotCacheItem::getName() const
return OUString();
}
-
-
PivotCacheItemList::PivotCacheItemList( const WorkbookHelper& rHelper ) :
WorkbookHelper( rHelper )
{
@@ -424,8 +412,6 @@ void PivotCacheItemList::importArray( SequenceInputStream& rStrm )
}
}
-
-
PCFieldModel::PCFieldModel() :
mnNumFmtId( 0 ),
mnSqlType( 0 ),
@@ -439,8 +425,6 @@ PCFieldModel::PCFieldModel() :
{
}
-
-
PCSharedItemsModel::PCSharedItemsModel() :
mbHasSemiMixed( true ),
mbHasNonDate( true ),
@@ -455,8 +439,6 @@ PCSharedItemsModel::PCSharedItemsModel() :
{
}
-
-
PCFieldGroupModel::PCFieldGroupModel() :
mfStartValue( 0.0 ),
mfEndValue( 0.0 ),
@@ -478,8 +460,6 @@ void PCFieldGroupModel::setBiffGroupBy( sal_uInt8 nGroupBy )
mnGroupBy = STATIC_ARRAY_SELECT( spnGroupBy, nGroupBy, XML_range );
}
-
-
PivotCacheField::PivotCacheField( const WorkbookHelper& rHelper, bool bIsDatabaseField ) :
WorkbookHelper( rHelper ),
maSharedItems( rHelper ),
@@ -1033,8 +1013,6 @@ void PivotCacheField::writeSharedItemToSourceDataCell(
writeItemToSourceDataCell( rSheetHelper, nCol, nRow, *pCacheItem );
}
-
-
PCDefinitionModel::PCDefinitionModel() :
mfRefreshedDate( 0.0 ),
mnRecords( 0 ),
@@ -1053,23 +1031,17 @@ PCDefinitionModel::PCDefinitionModel() :
{
}
-
-
PCSourceModel::PCSourceModel() :
mnSourceType( XML_TOKEN_INVALID ),
mnConnectionId( 0 )
{
}
-
-
PCWorksheetSourceModel::PCWorksheetSourceModel()
{
maRange.StartColumn = maRange.StartRow = maRange.EndColumn = maRange.EndRow = -1;
}
-
-
PivotCache::PivotCache( const WorkbookHelper& rHelper ) :
WorkbookHelper( rHelper ),
mnCurrRow( -1 ),
@@ -1396,8 +1368,6 @@ void PivotCache::updateSourceDataRow( WorksheetHelper& rSheetHelper, sal_Int32 n
}
}
-
-
PivotCacheBuffer::PivotCacheBuffer( const WorkbookHelper& rHelper ) :
WorkbookHelper( rHelper )
{
@@ -1484,8 +1454,6 @@ PivotCache& PivotCacheBuffer::createPivotCache( sal_Int32 nCacheId )
return *rxCache;
}
-
-
} // namespace xls
} // namespace oox