summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpsvstream.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-05-22 16:38:54 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-05-22 16:38:54 +0100
commitbd32449e0b8016e9d4e2b14848780f4a641394f2 (patch)
tree48d984fd0ff6652acbfbd5e15b3c03584e6a0a67 /lotuswordpro/source/filter/lwpsvstream.hxx
parent79787787d6ca1dd5a0c1aacfc401199771ce2c63 (diff)
fix up endianness of lowhanging QuickReads
Diffstat (limited to 'lotuswordpro/source/filter/lwpsvstream.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpsvstream.hxx11
1 files changed, 3 insertions, 8 deletions
diff --git a/lotuswordpro/source/filter/lwpsvstream.hxx b/lotuswordpro/source/filter/lwpsvstream.hxx
index a613e38a3304..4fd0a2054bb3 100644
--- a/lotuswordpro/source/filter/lwpsvstream.hxx
+++ b/lotuswordpro/source/filter/lwpsvstream.hxx
@@ -71,10 +71,9 @@ public:
sal_Int64 SeekRel( sal_Int64 pos );
sal_Int64 Tell();
sal_Int64 Seek( sal_Int64 pos );
-// sal_Int64 GetLength();
+
static const sal_uInt32 LWP_STREAM_BASE;
- // added by for small file feature
LwpSvStream * GetCompressedStream()
{
return m_pCompressedStream;
@@ -83,19 +82,15 @@ public:
{
return m_pStream;
}
- // end of added by
private:
// when the file opened is small file, m_pStream is the decompressed stream
// when not, m_pStream contains the normal stream
SvStream* m_pStream;
- // added by for small file feature
- // when the file opened is small file, this stream is
- // for saving the compressed stream which is to be used for Chart/OLE as BENTO container
+ // when the file opened is small file, this stream is for saving the
+ // compressed stream which is to be used for Chart/OLE as BENTO container
LwpSvStream * m_pCompressedStream;
- // end of added by
-
};
#endif