summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-12-12 09:42:47 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-12-12 11:49:03 +0000
commit2c2e80da68efcee5bffdb61d9c078f9360a639a4 (patch)
treeecd55cd5c97f1dbe2580d033c0fcda6568ff849f /lotuswordpro
parentc928840ef2a41ca373ad9070d8e9160c216260da (diff)
callcatcher: remove newly unused code
and rework reads to just return the read value Change-Id: I5d2f01064465c65859ec4ba031ec9dfa16403487
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpsvstream.cxx18
-rw-r--r--lotuswordpro/source/filter/lwpsvstream.hxx4
2 files changed, 0 insertions, 22 deletions
diff --git a/lotuswordpro/source/filter/lwpsvstream.cxx b/lotuswordpro/source/filter/lwpsvstream.cxx
index b65696fbee1b..e49b8b1cc425 100644
--- a/lotuswordpro/source/filter/lwpsvstream.cxx
+++ b/lotuswordpro/source/filter/lwpsvstream.cxx
@@ -88,24 +88,6 @@ LwpSvStream& LwpSvStream::ReadUInt32( sal_uInt32& rUInt32 )
return *this;
}
-LwpSvStream& LwpSvStream::ReadInt8( sal_Int8& rInt8 )
-{
- m_pStream->ReadSChar( rInt8 );
- return *this;
-}
-
-LwpSvStream& LwpSvStream::ReadInt16( sal_Int16& rInt16 )
-{
- m_pStream->ReadInt16( rInt16 );
- return *this;
-}
-
-LwpSvStream& LwpSvStream::ReadInt32( sal_Int32& rInt32 )
-{
- m_pStream->ReadInt32( rInt32 );
- return *this;
-}
-
/**
* @descr SeekRel in stream
*/
diff --git a/lotuswordpro/source/filter/lwpsvstream.hxx b/lotuswordpro/source/filter/lwpsvstream.hxx
index 0917cd461c7e..40cb435029f7 100644
--- a/lotuswordpro/source/filter/lwpsvstream.hxx
+++ b/lotuswordpro/source/filter/lwpsvstream.hxx
@@ -76,10 +76,6 @@ public:
LwpSvStream& ReadUInt16( sal_uInt16& rUInt16 );
LwpSvStream& ReadUInt32( sal_uInt32& rUInt32 );
- LwpSvStream& ReadInt8( sal_Int8& rInt8 );
- LwpSvStream& ReadInt16( sal_Int16& rInt16 );
- LwpSvStream& ReadInt32( sal_Int32& rInt32 );
-
static const sal_uInt32 LWP_STREAM_BASE;
LwpSvStream * GetCompressedStream()