diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2008-06-20 06:21:09 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2008-06-20 06:21:09 +0000 |
commit | c0b71717511d96be1d3d69f974ddc47f44ec793b (patch) | |
tree | 5d450216d3448f59a263680b8a8cafd63255ee36 /package | |
parent | 13862cdcff7bed78156a1ee76e862ef6433e579d (diff) |
INTEGRATION: CWS fwk88 (1.40.8); FILE MERGED
2008/05/27 15:57:24 mav 1.40.8.1: #i86348# integrate the patch
Diffstat (limited to 'package')
-rw-r--r-- | package/source/zipapi/ZipOutputStream.cxx | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/package/source/zipapi/ZipOutputStream.cxx b/package/source/zipapi/ZipOutputStream.cxx index f9fa21e5d72b..fe31b9d93b20 100644 --- a/package/source/zipapi/ZipOutputStream.cxx +++ b/package/source/zipapi/ZipOutputStream.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: ZipOutputStream.cxx,v $ - * $Revision: 1.40 $ + * $Revision: 1.41 $ * * This file is part of OpenOffice.org. * @@ -73,11 +73,6 @@ ZipOutputStream::~ZipOutputStream( void ) delete aZipList[i]; } -void SAL_CALL ZipOutputStream::setComment( const ::rtl::OUString& rComment ) - throw(RuntimeException) -{ - sComment = rComment; -} void SAL_CALL ZipOutputStream::setMethod( sal_Int32 nNewMethod ) throw(RuntimeException) { @@ -130,11 +125,6 @@ void SAL_CALL ZipOutputStream::putNextEntry( ZipEntry& rEntry, aZipList.push_back( &rEntry ); pCurrentEntry = &rEntry; } -void SAL_CALL ZipOutputStream::close( ) - throw(IOException, RuntimeException) -{ - finish(); -} void SAL_CALL ZipOutputStream::closeEntry( ) throw(IOException, RuntimeException) |