summaryrefslogtreecommitdiff
path: root/comphelper/inc/comphelper/oslfile2streamwrap.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2001-09-27 10:03:18 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2001-09-27 10:03:18 +0000
commit5ea3693640d8a60cd0a86785c016b55cca14b0c2 (patch)
treec5bfc1c06ea34ba093c9c482d787302ca0d28a29 /comphelper/inc/comphelper/oslfile2streamwrap.hxx
parent469c66489a29092bc46028ef2b1fb7e9a05defc9 (diff)
#65293#: exception specifications
Diffstat (limited to 'comphelper/inc/comphelper/oslfile2streamwrap.hxx')
-rw-r--r--comphelper/inc/comphelper/oslfile2streamwrap.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/comphelper/inc/comphelper/oslfile2streamwrap.hxx b/comphelper/inc/comphelper/oslfile2streamwrap.hxx
index 6e116c208b2e..267d3d40b654 100644
--- a/comphelper/inc/comphelper/oslfile2streamwrap.hxx
+++ b/comphelper/inc/comphelper/oslfile2streamwrap.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: oslfile2streamwrap.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: fs $ $Date: 2000-09-29 11:28:15 $
+ * last change: $Author: hr $ $Date: 2001-09-27 11:03:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -104,9 +104,9 @@ public:
virtual ~OSLInputStreamWrapper();
// UNO Anbindung
- virtual void SAL_CALL acquire() throw(::com::sun::star::uno::RuntimeException)
+ virtual void SAL_CALL acquire() throw()
{ InputStreamWrapper_Base::acquire(); }
- virtual void SAL_CALL release() throw(::com::sun::star::uno::RuntimeException)
+ virtual void SAL_CALL release() throw()
{ InputStreamWrapper_Base::release(); }
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface(const ::com::sun::star::uno::Type& _rType) throw (::com::sun::star::uno::RuntimeException)
{ return InputStreamWrapper_Base::queryInterface(_rType); }
@@ -133,9 +133,9 @@ public:
OSLOutputStreamWrapper(::osl::File& _rFile) :rFile(_rFile) { }
// UNO Anbindung
- virtual void SAL_CALL acquire() throw(::com::sun::star::uno::RuntimeException)
+ virtual void SAL_CALL acquire() throw()
{ OutputStreamWrapper_Base::acquire(); }
- virtual void SAL_CALL release() throw(::com::sun::star::uno::RuntimeException)
+ virtual void SAL_CALL release() throw()
{ OutputStreamWrapper_Base::release(); }
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface(const ::com::sun::star::uno::Type& _rType) throw (::com::sun::star::uno::RuntimeException)
{ return OutputStreamWrapper_Base::queryInterface(_rType); }