summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/excrecds.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/excel/excrecds.cxx')
-rw-r--r--sc/source/filter/excel/excrecds.cxx38
1 files changed, 0 insertions, 38 deletions
diff --git a/sc/source/filter/excel/excrecds.cxx b/sc/source/filter/excel/excrecds.cxx
index 5097c800ff83..4dc124386b21 100644
--- a/sc/source/filter/excel/excrecds.cxx
+++ b/sc/source/filter/excel/excrecds.cxx
@@ -186,8 +186,6 @@ sal_Size ExcBoolRecord::GetLen( void ) const
}
-
-
//--------------------------------------------------------- class ExcBof_Base -
ExcBof_Base::ExcBof_Base() :
@@ -196,8 +194,6 @@ ExcBof_Base::ExcBof_Base() :
{
}
-
-
//-------------------------------------------------------------- class ExcBof -
ExcBof::ExcBof( void )
@@ -224,8 +220,6 @@ sal_Size ExcBof::GetLen( void ) const
return 8;
}
-
-
//------------------------------------------------------------- class ExcBofW -
ExcBofW::ExcBofW( void )
@@ -240,22 +234,16 @@ void ExcBofW::SaveCont( XclExpStream& rStrm )
rStrm << nVers << nDocType << nRupBuild << nRupYear;
}
-
-
sal_uInt16 ExcBofW::GetNum( void ) const
{
return 0x0809;
}
-
-
sal_Size ExcBofW::GetLen( void ) const
{
return 8;
}
-
-
//-------------------------------------------------------------- class ExcEof -
sal_uInt16 ExcEof::GetNum( void ) const
@@ -269,8 +257,6 @@ sal_Size ExcEof::GetLen( void ) const
return 0;
}
-
-
//--------------------------------------------------------- class ExcDummy_00 -
sal_Size ExcDummy_00::GetLen( void ) const
@@ -284,8 +270,6 @@ const sal_uInt8* ExcDummy_00::GetData( void ) const
return pMyData;
}
-
-
//-------------------------------------------------------- class ExcDummy_04x -
sal_Size ExcDummy_040::GetLen( void ) const
@@ -300,8 +284,6 @@ const sal_uInt8* ExcDummy_040::GetData( void ) const
}
-
-
sal_Size ExcDummy_041::GetLen( void ) const
{
return nMyLen;
@@ -313,8 +295,6 @@ const sal_uInt8* ExcDummy_041::GetData( void ) const
return pMyData;
}
-
-
//------------------------------------------------------------- class Exc1904 -
Exc1904::Exc1904( ScDocument& rDoc )
@@ -350,8 +330,6 @@ void Exc1904::SaveXml( XclExpXmlStream& rStrm )
}
}
-
-
//------------------------------------------------------ class ExcBundlesheet -
ExcBundlesheetBase::ExcBundlesheetBase( RootData& rRootData, SCTAB nTabNum ) :
@@ -387,8 +365,6 @@ sal_uInt16 ExcBundlesheetBase::GetNum( void ) const
}
-
-
ExcBundlesheet::ExcBundlesheet( RootData& rRootData, SCTAB _nTab ) :
ExcBundlesheetBase( rRootData, _nTab )
{
@@ -568,23 +544,17 @@ void XclExpPassHash::WriteBody(XclExpStream& rStrm)
rStrm << mnHash;
}
-
-
XclExpFiltermode::XclExpFiltermode() :
XclExpEmptyRecord( EXC_ID_FILTERMODE )
{
}
-
-
XclExpAutofilterinfo::XclExpAutofilterinfo( const ScAddress& rStartPos, SCCOL nScCol ) :
XclExpUInt16Record( EXC_ID_AUTOFILTERINFO, static_cast< sal_uInt16 >( nScCol ) ),
maStartPos( rStartPos )
{
}
-
-
ExcFilterCondition::ExcFilterCondition() :
nType( EXC_AFTYPE_NOTUSED ),
nOper( EXC_AFOPER_EQUAL ),
@@ -681,8 +651,6 @@ void ExcFilterCondition::SaveText( XclExpStream& rStrm )
}
}
-
-
XclExpAutofilter::XclExpAutofilter( const XclExpRoot& rRoot, sal_uInt16 nC ) :
XclExpRecord( EXC_ID_AUTOFILTER, 24 ),
XclExpRoot( rRoot ),
@@ -904,8 +872,6 @@ void XclExpAutofilter::SaveXml( XclExpXmlStream& rStrm )
rWorksheet->endElement( XML_filterColumn );
}
-
-
ExcAutoFilterRecs::ExcAutoFilterRecs( const XclExpRoot& rRoot, SCTAB nTab ) :
XclExpRoot( rRoot ),
pFilterMode( NULL ),
@@ -1076,8 +1042,6 @@ bool ExcAutoFilterRecs::HasFilterMode() const
return pFilterMode != NULL;
}
-
-
XclExpFilterManager::XclExpFilterManager( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot )
{
@@ -1111,6 +1075,4 @@ bool XclExpFilterManager::HasFilterMode( SCTAB nScTab )
return false;
}
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */