summaryrefslogtreecommitdiff
path: root/package/source/zipapi/ZipEnumeration.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2000-11-28 15:11:37 +0000
committerOliver Bolte <obo@openoffice.org>2000-11-28 15:11:37 +0000
commit65de56e98cd24b4b2c13d1fd255c793a898858c5 (patch)
treed7b1b9e7422e0df84f003fc87066518944cb9ac7 /package/source/zipapi/ZipEnumeration.cxx
parent782e5f579a4f43c9e1c0d84a0dea610fb320abd6 (diff)
#65293# throw() to throw for linux
Diffstat (limited to 'package/source/zipapi/ZipEnumeration.cxx')
-rw-r--r--package/source/zipapi/ZipEnumeration.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/source/zipapi/ZipEnumeration.cxx b/package/source/zipapi/ZipEnumeration.cxx
index d60882d70b0e..033ea87e3c6b 100644
--- a/package/source/zipapi/ZipEnumeration.cxx
+++ b/package/source/zipapi/ZipEnumeration.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ZipEnumeration.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mtg $ $Date: 2000-11-21 17:57:07 $
+ * last change: $Author: obo $ $Date: 2000-11-28 16:11:37 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -93,7 +93,7 @@ sal_Bool SAL_CALL ZipEnumeration::hasMoreElements() throw (uno::RuntimeException
uno::Any SAL_CALL ZipEnumeration::nextElement() throw (uno::RuntimeException)
{
if (hasMoreElements() == sal_False)
- throw (container::NoSuchElementException() );
+ throw container::NoSuchElementException();
uno::Any aElement;
//aElement <<= uno::Reference < package::ZipEntry > (static_cast <package::ZipEntry > (xZipList[nCurrent++]));
aElement <<= xZipList[nCurrent++];