summaryrefslogtreecommitdiffstats
path: root/sc/source/filter/excel/excdoc.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/excel/excdoc.cxx')
-rw-r--r--sc/source/filter/excel/excdoc.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/sc/source/filter/excel/excdoc.cxx b/sc/source/filter/excel/excdoc.cxx
index 40ed956b624e..4b60de0238db 100644
--- a/sc/source/filter/excel/excdoc.cxx
+++ b/sc/source/filter/excel/excdoc.cxx
@@ -84,7 +84,6 @@ static OUString lcl_GetVbaTabName( SCTAB n )
return aRet;
}
-
static void lcl_AddBookviews( XclExpRecordList<>& aRecList, ExcTable& self )
{
aRecList.AppendNewRecord( new XclExpXmlStartElementRecord( XML_bookViews ) );
@@ -131,7 +130,6 @@ static void lcl_AddScenariosAndFilters( XclExpRecordList<>& aRecList, const XclE
aRecList.AppendRecord( rRoot.GetFilterManager().CreateRecord( nScTab ) );
}
-
ExcTable::ExcTable( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot ),
mnScTab( SCTAB_GLOBAL ),
@@ -141,7 +139,6 @@ ExcTable::ExcTable( const XclExpRoot& rRoot ) :
{
}
-
ExcTable::ExcTable( const XclExpRoot& rRoot, SCTAB nScTab ) :
XclExpRoot( rRoot ),
mnScTab( nScTab ),
@@ -151,20 +148,17 @@ ExcTable::ExcTable( const XclExpRoot& rRoot, SCTAB nScTab ) :
{
}
-
ExcTable::~ExcTable()
{
delete pTabNames;
}
-
void ExcTable::Add( XclExpRecordBase* pRec )
{
OSL_ENSURE( pRec, "-ExcTable::Add(): pRec is NULL!" );
aRecList.AppendNewRecord( pRec );
}
-
void ExcTable::FillAsHeader( ExcBoundsheetList& rBoundsheetList )
{
InitializeGlobals();
@@ -322,7 +316,6 @@ void ExcTable::FillAsHeader( ExcBoundsheetList& rBoundsheetList )
aRecList.AppendRecord( CreateRecord( EXC_ID_PALETTE ) );
}
-
if( GetBiff() <= EXC_BIFF5 )
{
// Bundlesheet
@@ -397,7 +390,6 @@ void ExcTable::FillAsHeader( ExcBoundsheetList& rBoundsheetList )
Add( new ExcEof );
}
-
void ExcTable::FillAsTable( SCTAB nCodeNameIdx )
{
InitializeTable( mnScTab );
@@ -433,7 +425,6 @@ void ExcTable::FillAsTable( SCTAB nCodeNameIdx )
return;
}
-
// WSBOOL needs data from page settings, create it here, add it later
boost::shared_ptr< XclExpPageSettings > xPageSett( new XclExpPageSettings( GetRoot() ) );
bool bFitToPages = xPageSett->GetPageData().mbFitToPages;
@@ -653,7 +644,6 @@ void ExcTable::FillAsXmlTable( SCTAB nCodeNameIdx )
Add( new ExcEof );
}
-
void ExcTable::FillAsEmptyTable( SCTAB nCodeNameIdx )
{
InitializeTable( mnScTab );
@@ -675,7 +665,6 @@ void ExcTable::FillAsEmptyTable( SCTAB nCodeNameIdx )
}
}
-
void ExcTable::Write( XclExpStream& rStrm )
{
SetCurrScTab( mnScTab );
@@ -684,7 +673,6 @@ void ExcTable::Write( XclExpStream& rStrm )
aRecList.Save( rStrm );
}
-
void ExcTable::WriteXml( XclExpXmlStream& rStrm )
{
if (GetTabInfo().IsExportTab( mnScTab ) )
@@ -714,7 +702,6 @@ void ExcTable::WriteXml( XclExpXmlStream& rStrm )
}
}
-
ExcDocument::ExcDocument( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot ),
aHeader( rRoot ),
@@ -722,14 +709,12 @@ ExcDocument::ExcDocument( const XclExpRoot& rRoot ) :
{
}
-
ExcDocument::~ExcDocument()
{
maTableList.RemoveAllRecords(); //! for the following assertion
delete pExpChangeTrack;
}
-
void ExcDocument::ReadDoc( void )
{
InitializeConvert();
@@ -767,7 +752,6 @@ void ExcDocument::ReadDoc( void )
}
}
-
void ExcDocument::Write( SvStream& rSvStrm )
{
if( !maTableList.IsEmpty() )