summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-06-20 06:16:29 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-06-20 06:16:29 +0000
commit47f871e8c0b679e9970007059b5659d59dfa1eda (patch)
tree05b330075d36acecec3fb08146ea0dfe91fcf09f
parent7a178cc3e9a91c4c303af2b01dfc128819e2ada3 (diff)
INTEGRATION: CWS fwk88 (1.12.8); FILE MERGED
2008/05/27 15:57:23 mav 1.12.8.1: #i86348# integrate the patch
-rw-r--r--package/inc/CRC32.hxx4
-rw-r--r--package/inc/Inflater.hxx13
2 files changed, 2 insertions, 15 deletions
diff --git a/package/inc/CRC32.hxx b/package/inc/CRC32.hxx
index ff3d42dac..d789125e6 100644
--- a/package/inc/CRC32.hxx
+++ b/package/inc/CRC32.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: CRC32.hxx,v $
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
* This file is part of OpenOffice.org.
*
@@ -46,8 +46,6 @@ public:
sal_Int32 SAL_CALL updateStream (::com::sun::star::uno::Reference < ::com::sun::star::io::XInputStream > & xStream)
throw(::com::sun::star::uno::RuntimeException);
- void SAL_CALL updateByte (sal_Int8 nByte)
- throw(::com::sun::star::uno::RuntimeException);
void SAL_CALL updateSegment(const ::com::sun::star::uno::Sequence< sal_Int8 > &b, sal_Int32 off, sal_Int32 len)
throw(::com::sun::star::uno::RuntimeException);
void SAL_CALL update(const ::com::sun::star::uno::Sequence< sal_Int8 > &b)
diff --git a/package/inc/Inflater.hxx b/package/inc/Inflater.hxx
index d662ae510..42cb2076b 100644
--- a/package/inc/Inflater.hxx
+++ b/package/inc/Inflater.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: Inflater.hxx,v $
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
* This file is part of OpenOffice.org.
*
@@ -48,21 +48,10 @@ protected:
public:
Inflater(sal_Bool bNoWrap = sal_False);
~Inflater();
- void SAL_CALL setInputSegment( const ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength );
void SAL_CALL setInput( const ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer );
- void SAL_CALL setDictionarySegment( const ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength );
- void SAL_CALL setDictionary( const ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer );
- sal_Int32 SAL_CALL getRemaining( );
- sal_Bool SAL_CALL needsInput( );
sal_Bool SAL_CALL needsDictionary( );
- void SAL_CALL finish( );
sal_Bool SAL_CALL finished( );
sal_Int32 SAL_CALL doInflateSegment( ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength );
- sal_Int32 SAL_CALL doInflate( ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer );
- sal_Int32 SAL_CALL getAdler( );
- sal_Int32 SAL_CALL getTotalIn( );
- sal_Int32 SAL_CALL getTotalOut( );
- void SAL_CALL reset( );
void SAL_CALL end( );
};