summaryrefslogtreecommitdiff
path: root/package/inc/ZipOutputStream.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-23 14:59:15 +0200
committerNoel Grandin <noel@peralex.com>2015-10-23 15:14:45 +0200
commit8d80b5be024bdbcfedd41b32cbb5c6b71724dd33 (patch)
tree4a4ec47464f3756d551ef97fb419ca073750ef24 /package/inc/ZipOutputStream.hxx
parent3569c58c0ed9ac69f809d6f47ac4fe2cb8732630 (diff)
com::sun::star->css in package,pyuno
Change-Id: I7b7b0e7fea2d1a2b9f6f5501ad5e0b8c1b4a17b9
Diffstat (limited to 'package/inc/ZipOutputStream.hxx')
-rw-r--r--package/inc/ZipOutputStream.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/package/inc/ZipOutputStream.hxx b/package/inc/ZipOutputStream.hxx
index d6d7853f96cc..16740095bd92 100644
--- a/package/inc/ZipOutputStream.hxx
+++ b/package/inc/ZipOutputStream.hxx
@@ -33,7 +33,7 @@ class ZipPackageStream;
class ZipOutputStream
{
- ::com::sun::star::uno::Reference< ::com::sun::star::io::XOutputStream > m_xStream;
+ css::uno::Reference< css::io::XOutputStream > m_xStream;
::std::vector < ZipEntry * > m_aZipList;
ByteChucker m_aChucker;
@@ -43,20 +43,20 @@ class ZipOutputStream
public:
ZipOutputStream(
- const ::com::sun::star::uno::Reference< ::com::sun::star::io::XOutputStream > &xOStream );
+ const css::uno::Reference< css::io::XOutputStream > &xOStream );
~ZipOutputStream();
void addDeflatingThread( ZipOutputEntry *pEntry, comphelper::ThreadTask *pThreadTask );
void writeLOC( ZipEntry *pEntry, bool bEncrypt = false )
- throw(::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
+ throw(css::io::IOException, css::uno::RuntimeException);
void rawWrite( const css::uno::Sequence< sal_Int8 >& rBuffer )
- throw(::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
+ throw(css::io::IOException, css::uno::RuntimeException);
void rawCloseEntry( bool bEncrypt = false )
- throw(::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
+ throw(css::io::IOException, css::uno::RuntimeException);
void finish()
- throw(::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
+ throw(css::io::IOException, css::uno::RuntimeException);
css::uno::Reference< css::io::XOutputStream > getStream();
static sal_uInt32 getCurrentDosTime();
@@ -64,11 +64,11 @@ public:
private:
void writeEND(sal_uInt32 nOffset, sal_uInt32 nLength)
- throw(::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
+ throw(css::io::IOException, css::uno::RuntimeException);
void writeCEN( const ZipEntry &rEntry )
- throw(::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
+ throw(css::io::IOException, css::uno::RuntimeException);
void writeEXT( const ZipEntry &rEntry )
- throw(::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
+ throw(css::io::IOException, css::uno::RuntimeException);
};
#endif