summaryrefslogtreecommitdiff
path: root/include/package
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-22 16:38:52 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-23 07:08:51 +0000
commite4acd26406056addac8c10e80d8cfaa48cedc7fc (patch)
tree96532a7c95d861d0bf6add09d0c8afd179756bbe /include/package
parentfa22a60e71da5c43b53c5c94f65903ce05d8c9e8 (diff)
com::sun::star->css in include/linguistic to include/sfx2
Change-Id: Id69e293fda98ee6cf2cc3d3296a0cd2e06bd847e Reviewed-on: https://gerrit.libreoffice.org/19527 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/package')
-rw-r--r--include/package/Deflater.hxx8
-rw-r--r--include/package/Inflater.hxx8
2 files changed, 8 insertions, 8 deletions
diff --git a/include/package/Deflater.hxx b/include/package/Deflater.hxx
index 802712efcb07..00e3ee81246e 100644
--- a/include/package/Deflater.hxx
+++ b/include/package/Deflater.hxx
@@ -32,7 +32,7 @@ class DLLPUBLIC_PACKAGE Deflater
typedef struct z_stream_s z_stream;
protected:
- com::sun::star::uno::Sequence< sal_Int8 > sInBuffer;
+ css::uno::Sequence< sal_Int8 > sInBuffer;
bool bFinish;
bool bFinished;
sal_Int32 nStrategy;
@@ -40,16 +40,16 @@ protected:
z_stream* pStream;
void init (sal_Int32 nLevel, sal_Int32 nStrategy, bool bNowrap);
- sal_Int32 doDeflateBytes (com::sun::star::uno::Sequence < sal_Int8 > &rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength);
+ sal_Int32 doDeflateBytes (css::uno::Sequence < sal_Int8 > &rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength);
public:
~Deflater();
Deflater(sal_Int32 nSetLevel, bool bNowrap);
- void SAL_CALL setInputSegment( const ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer );
+ void SAL_CALL setInputSegment( const css::uno::Sequence< sal_Int8 >& rBuffer );
bool SAL_CALL needsInput( );
void SAL_CALL finish( );
bool SAL_CALL finished( ) { return bFinished;}
- sal_Int32 SAL_CALL doDeflateSegment( ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength );
+ sal_Int32 SAL_CALL doDeflateSegment( css::uno::Sequence< sal_Int8 >& rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength );
sal_Int64 SAL_CALL getTotalIn( );
sal_Int64 SAL_CALL getTotalOut( );
void SAL_CALL reset( );
diff --git a/include/package/Inflater.hxx b/include/package/Inflater.hxx
index db587185d849..ea2f73d73b75 100644
--- a/include/package/Inflater.hxx
+++ b/include/package/Inflater.hxx
@@ -35,16 +35,16 @@ protected:
bool bFinished, bSetParams, bNeedDict;
sal_Int32 nOffset, nLength, nLastInflateError;
z_stream* pStream;
- com::sun::star::uno::Sequence < sal_Int8 > sInBuffer;
- sal_Int32 doInflateBytes (com::sun::star::uno::Sequence < sal_Int8 > &rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength);
+ css::uno::Sequence < sal_Int8 > sInBuffer;
+ sal_Int32 doInflateBytes (css::uno::Sequence < sal_Int8 > &rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength);
public:
Inflater(bool bNoWrap = false);
~Inflater();
- void SAL_CALL setInput( const ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer );
+ void SAL_CALL setInput( const css::uno::Sequence< sal_Int8 >& rBuffer );
bool SAL_CALL needsDictionary( ) { return bNeedDict;}
bool SAL_CALL finished( ) { return bFinished;}
- sal_Int32 SAL_CALL doInflateSegment( ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength );
+ sal_Int32 SAL_CALL doInflateSegment( css::uno::Sequence< sal_Int8 >& rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength );
void SAL_CALL end( );
sal_Int32 getLastInflateError() { return nLastInflateError; }