summaryrefslogtreecommitdiff
path: root/package/source/zipapi/CRC32.cxx
diff options
context:
space:
mode:
authorMartin Gallwey <mtg@openoffice.org>2000-11-24 09:34:27 +0000
committerMartin Gallwey <mtg@openoffice.org>2000-11-24 09:34:27 +0000
commitb28e1878292703256fa02ca7195090bd22e14e8d (patch)
tree787ee5c76e84f29e3c0bb452dde072c1e60e08c4 /package/source/zipapi/CRC32.cxx
parent67b6cf9dfc9589eb53e5fc5badbd87ef70e858a7 (diff)
#80556# now builds under Solaris correctly
Diffstat (limited to 'package/source/zipapi/CRC32.cxx')
-rw-r--r--package/source/zipapi/CRC32.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/package/source/zipapi/CRC32.cxx b/package/source/zipapi/CRC32.cxx
index ca866f761fc5..0021bafbdf93 100644
--- a/package/source/zipapi/CRC32.cxx
+++ b/package/source/zipapi/CRC32.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: CRC32.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mtg $ $Date: 2000-11-16 11:55:52 $
+ * last change: $Author: mtg $ $Date: 2000-11-24 10:34:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -75,11 +75,13 @@ CRC32::CRC32()
CRC32::~CRC32()
{
}
-void CRC32::reset()
+void SAL_CALL CRC32::reset()
+ throw(uno::RuntimeException)
{
nCRC=0;
}
-sal_Int32 CRC32::getValue()
+sal_Int32 SAL_CALL CRC32::getValue()
+ throw(uno::RuntimeException)
{
return nCRC & 0xFFFFFFFFL;
}