diff options
author | Martin Gallwey <mtg@openoffice.org> | 2000-12-13 16:18:33 +0000 |
---|---|---|
committer | Martin Gallwey <mtg@openoffice.org> | 2000-12-13 16:18:33 +0000 |
commit | b124c983eb99c4aee81872e319ce01d71e36018d (patch) | |
tree | 646e75d32b45a98065abedf775c08ce84d430110 /package/source/zipapi/ZipOutputStream.cxx | |
parent | a1ab5b44eb458a24cd788cf4cb23e788b986fb9e (diff) |
fixed exception specification so it compiles under solaris
Diffstat (limited to 'package/source/zipapi/ZipOutputStream.cxx')
-rw-r--r-- | package/source/zipapi/ZipOutputStream.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/source/zipapi/ZipOutputStream.cxx b/package/source/zipapi/ZipOutputStream.cxx index 9bdde17b3..64682bc37 100644 --- a/package/source/zipapi/ZipOutputStream.cxx +++ b/package/source/zipapi/ZipOutputStream.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ZipOutputStream.cxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: mtg $ $Date: 2000-12-13 17:00:43 $ + * last change: $Author: mtg $ $Date: 2000-12-13 17:18:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -219,6 +219,7 @@ void SAL_CALL ZipOutputStream::write( const uno::Sequence< sal_Int8 >& rBuffer, aCRC.updateSegment(rBuffer, nNewOffset, nNewLength); } void SAL_CALL ZipOutputStream::rawWrite( const uno::Sequence< sal_Int8 >& rBuffer) + throw(io::IOException, uno::RuntimeException) { aChucker.writeBytes(rBuffer); } |