From e0b3f12304350ccadd0ed95b92f09a2602da9d1f Mon Sep 17 00:00:00 2001
From: Jens-Heiner Rechtien
Date: Fri, 26 Oct 2001 12:10:39 +0000
Subject: #92924#: exception specifications
---
ucb/source/ucp/file/filstr.cxx | 4 ++--
ucb/source/ucp/file/filstr.hxx | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
(limited to 'ucb')
diff --git a/ucb/source/ucp/file/filstr.cxx b/ucb/source/ucp/file/filstr.cxx
index 12007a47dd3f..0e554eeb2568 100644
--- a/ucb/source/ucp/file/filstr.cxx
+++ b/ucb/source/ucp/file/filstr.cxx
@@ -41,7 +41,7 @@ XStream_impl::queryInterface(
void SAL_CALL
XStream_impl::acquire(
void )
- throw( uno::RuntimeException )
+ throw()
{
OWeakObject::acquire();
}
@@ -50,7 +50,7 @@ XStream_impl::acquire(
void SAL_CALL
XStream_impl::release(
void )
- throw( uno::RuntimeException )
+ throw()
{
OWeakObject::release();
}
diff --git a/ucb/source/ucp/file/filstr.hxx b/ucb/source/ucp/file/filstr.hxx
index 06df773c2b49..20e1c94d4610 100644
--- a/ucb/source/ucp/file/filstr.hxx
+++ b/ucb/source/ucp/file/filstr.hxx
@@ -85,12 +85,12 @@ namespace fileaccess {
virtual void SAL_CALL
acquire(
void )
- throw( com::sun::star::uno::RuntimeException);
+ throw();
virtual void SAL_CALL
release(
void )
- throw( com::sun::star::uno::RuntimeException );
+ throw();
// XTypeProvider
--
cgit