summaryrefslogtreecommitdiffstats
path: root/sc/source/filter/lotus/lotimpop.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/lotus/lotimpop.cxx')
-rw-r--r--sc/source/filter/lotus/lotimpop.cxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/sc/source/filter/lotus/lotimpop.cxx b/sc/source/filter/lotus/lotimpop.cxx
index a17b94d4b8fa..60fa5a4880b0 100644
--- a/sc/source/filter/lotus/lotimpop.cxx
+++ b/sc/source/filter/lotus/lotimpop.cxx
@@ -52,7 +52,6 @@ LOTUS_ROOT::LOTUS_ROOT( ScDocument* pDocP, rtl_TextEncoding eQ )
{
}
-
LOTUS_ROOT::~LOTUS_ROOT()
{
delete pRangeNames;
@@ -61,7 +60,6 @@ LOTUS_ROOT::~LOTUS_ROOT()
delete pAttrTable;
}
-
static osl::Mutex aLotImpSemaphore;
ImportLotus::ImportLotus( SvStream& aStream, ScDocument* pDoc, rtl_TextEncoding eQ )
@@ -86,7 +84,6 @@ ImportLotus::~ImportLotus()
aLotImpSemaphore.release();
}
-
void ImportLotus::Bof( void )
{
sal_uInt16 nFileCode, nFileSub, nSaveCnt;
@@ -114,7 +111,6 @@ void ImportLotus::Bof( void )
}
}
-
bool ImportLotus::BofFm3( void )
{
sal_uInt16 nFileCode, nFileSub;
@@ -125,7 +121,6 @@ bool ImportLotus::BofFm3( void )
return ( nFileCode == 0x8007 && ( nFileSub == 0x0000 || nFileSub == 0x00001 ) );
}
-
void ImportLotus::Columnwidth( sal_uInt16 nRecLen )
{
OSL_ENSURE( nRecLen >= 4, "*ImportLotus::Columnwidth(): Record zu kurz!" );
@@ -157,7 +152,6 @@ void ImportLotus::Columnwidth( sal_uInt16 nRecLen )
}
}
-
void ImportLotus::Hiddencolumn( sal_uInt16 nRecLen )
{
OSL_ENSURE( nRecLen >= 4, "*ImportLotus::Hiddencolumn(): Record zu kurz!" );
@@ -184,7 +178,6 @@ void ImportLotus::Hiddencolumn( sal_uInt16 nRecLen )
}
}
-
void ImportLotus::Userrange( void )
{
sal_uInt16 nRangeType;
@@ -202,7 +195,6 @@ void ImportLotus::Userrange( void )
pLotusRoot->pRngNmBffWK3->Add( aName, aScRange );
}
-
void ImportLotus::Errcell( void )
{
ScAddress aA;
@@ -215,7 +207,6 @@ void ImportLotus::Errcell( void )
pD->SetString(aA, "#ERR!", &aParam);
}
-
void ImportLotus::Nacell( void )
{
ScAddress aA;
@@ -228,7 +219,6 @@ void ImportLotus::Nacell( void )
pD->SetString(aA, "#NA!", &aParam);
}
-
void ImportLotus::Labelcell( void )
{
ScAddress aA;
@@ -245,7 +235,6 @@ void ImportLotus::Labelcell( void )
pD->SetString(aA, aLabel, &aParam);
}
-
void ImportLotus::Numbercell( void )
{
ScAddress aAddr;
@@ -258,7 +247,6 @@ void ImportLotus::Numbercell( void )
pD->SetValue(aAddr, fVal);
}
-
void ImportLotus::Smallnumcell( void )
{
ScAddress aAddr;
@@ -271,7 +259,6 @@ void ImportLotus::Smallnumcell( void )
pD->SetValue(aAddr, SnumToDouble(nVal));
}
-
ScFormulaCell *ImportLotus::Formulacell( sal_uInt16 n )
{
OSL_ENSURE( pIn, "-ImportLotus::Formulacell(): Null-Stream -> Rums!" );
@@ -298,13 +285,11 @@ ScFormulaCell *ImportLotus::Formulacell( sal_uInt16 n )
return NULL;
}
-
void ImportLotus::Read( OUString &r )
{
ScfTools::AppendCString( *pIn, r, eQuellChar );
}
-
void ImportLotus::RowPresentation( sal_uInt16 nRecLen )
{
OSL_ENSURE( nRecLen > 4, "*ImportLotus::RowPresentation(): Record zu kurz!" );
@@ -339,7 +324,6 @@ void ImportLotus::RowPresentation( sal_uInt16 nRecLen )
}
}
-
void ImportLotus::NamedSheet( void )
{
sal_uInt16 nLTab;
@@ -354,7 +338,6 @@ void ImportLotus::NamedSheet( void )
pD->InsertTab( static_cast<SCTAB> (nLTab), aName );
}
-
void ImportLotus::Font_Face( void )
{
sal_uInt8 nNum;
@@ -370,7 +353,6 @@ void ImportLotus::Font_Face( void )
pLotusRoot->pFontBuff->SetName( nNum, aName );
}
-
void ImportLotus::Font_Type( void )
{
for( sal_uInt16 nCnt = 0 ; nCnt < LotusFontBuffer::nSize ; nCnt++ )
@@ -381,7 +363,6 @@ void ImportLotus::Font_Type( void )
}
}
-
void ImportLotus::Font_Ysize( void )
{
for( sal_uInt16 nCnt = 0 ; nCnt < LotusFontBuffer::nSize ; nCnt++ )
@@ -392,7 +373,6 @@ void ImportLotus::Font_Ysize( void )
}
}
-
void ImportLotus::_Row( const sal_uInt16 nRecLen )
{
OSL_ENSURE( nExtTab >= 0, "*ImportLotus::_Row(): Kann hier nicht sein!" );