summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter')
-rw-r--r--lotuswordpro/source/filter/lwp9reader.cxx20
-rw-r--r--lotuswordpro/source/filter/lwp9reader.hxx1
-rw-r--r--lotuswordpro/source/filter/lwpdllist.hxx6
-rw-r--r--lotuswordpro/source/filter/lwptblcell.hxx29
4 files changed, 0 insertions, 56 deletions
diff --git a/lotuswordpro/source/filter/lwp9reader.cxx b/lotuswordpro/source/filter/lwp9reader.cxx
index 1cc12348ccf7..c947c60cd8a1 100644
--- a/lotuswordpro/source/filter/lwp9reader.cxx
+++ b/lotuswordpro/source/filter/lwp9reader.cxx
@@ -129,26 +129,6 @@ void Lwp9Reader::ReadIndex()
}
/**
- * @descr Read all objects
- * This function is replaced by the read on demand model
- * Reserverd for future use
-*/
-
-
-/**
- * @descr Get file size
-*/
-sal_Int64 Lwp9Reader::GetFileSize()
-{
- sal_Int64 pos = m_pDocStream->Tell();
- m_pDocStream->Seek(0);
-
- sal_Int64 size = m_pDocStream->Seek( STREAM_SEEK_TO_END);
- m_pDocStream->Seek(pos);
- return size;
-}
-
-/**
* @descr Parse all document content
*/
void Lwp9Reader::ParseDocument()
diff --git a/lotuswordpro/source/filter/lwp9reader.hxx b/lotuswordpro/source/filter/lwp9reader.hxx
index ecf175d8e6c0..9cc92bc682da 100644
--- a/lotuswordpro/source/filter/lwp9reader.hxx
+++ b/lotuswordpro/source/filter/lwp9reader.hxx
@@ -76,7 +76,6 @@ private:
LwpObjectFactory* m_pObjMgr;
LwpFileHeader m_LwpFileHdr; //LWP7 object
protected:
- sal_Int64 GetFileSize();
void ReadFileHeader();
void ReadIndex();
void ParseDocument();
diff --git a/lotuswordpro/source/filter/lwpdllist.hxx b/lotuswordpro/source/filter/lwpdllist.hxx
index 1c687df4b4b5..05a724ece8b7 100644
--- a/lotuswordpro/source/filter/lwpdllist.hxx
+++ b/lotuswordpro/source/filter/lwpdllist.hxx
@@ -69,7 +69,6 @@ public:
void insert(LwpDLList*, LwpDLList*);
void remove();
LwpDLList* GetNext();
- LwpDLList* GetPrevious();
void SetNext(LwpDLList*);
void SetPrevious(LwpDLList*);
private:
@@ -87,11 +86,6 @@ inline void LwpDLList::SetNext(LwpDLList* Next)
m_pNext = Next;
}
-inline LwpDLList* LwpDLList::GetPrevious()
-{
- return m_pPrevious;
-}
-
inline void LwpDLList::SetPrevious(LwpDLList* Previous)
{
m_pPrevious = Previous;
diff --git a/lotuswordpro/source/filter/lwptblcell.hxx b/lotuswordpro/source/filter/lwptblcell.hxx
index 73e676f76ac8..744fbd5f621a 100644
--- a/lotuswordpro/source/filter/lwptblcell.hxx
+++ b/lotuswordpro/source/filter/lwptblcell.hxx
@@ -230,15 +230,10 @@ public:
LwpRowColumnQualifier();
~LwpRowColumnQualifier(){}
- inline void SetAbsolute();
- inline void ClearAbsolute();
bool IsAbsolute();
- inline void SetAfter();
- inline void ClearAfter();
bool IsAfter();
- void SetBad(bool Bad);
bool IsBad();
void QuickRead(LwpObjectStream *pStrm);
@@ -253,30 +248,6 @@ private:
sal_uInt8 cFlags;
};
-inline void
-LwpRowColumnQualifier::SetAbsolute()
-{
- cFlags |= REF_ABSOLUTE;
-}
-
-inline void
-LwpRowColumnQualifier::ClearAbsolute()
-{
- cFlags &= ~REF_ABSOLUTE;
-}
-
-inline void
-LwpRowColumnQualifier::SetAfter()
-{
- cFlags |= REF_AFTER;
-}
-
-inline void
-LwpRowColumnQualifier::ClearAfter()
-{
- cFlags &= ~REF_AFTER;
-}
-
inline
LwpRowColumnQualifier::LwpRowColumnQualifier()
{