summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/api/statement.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2001-11-01 14:27:20 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2001-11-01 14:27:20 +0000
commit5983f7545dacb78ec0b69d5a365eea436b24a8ac (patch)
tree7c1fa3378c762e9195a24fa900d70d4fce96459f /dbaccess/source/core/api/statement.cxx
parentf7d4373cd3604c26d5ebd8ee7403fd6e3176eb22 (diff)
#92924#: gcc-3.0.1 needs lvalue, exception specifications
Diffstat (limited to 'dbaccess/source/core/api/statement.cxx')
-rw-r--r--dbaccess/source/core/api/statement.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/dbaccess/source/core/api/statement.cxx b/dbaccess/source/core/api/statement.cxx
index 6a6f99725f49..99ad54e28be5 100644
--- a/dbaccess/source/core/api/statement.cxx
+++ b/dbaccess/source/core/api/statement.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: statement.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: oj $ $Date: 2001-10-18 13:21:39 $
+ * last change: $Author: hr $ $Date: 2001-11-01 15:27:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -156,13 +156,13 @@ Any OStatementBase::queryInterface( const Type & rType ) throw (RuntimeException
}
//--------------------------------------------------------------------------
-void OStatementBase::acquire() throw (RuntimeException)
+void OStatementBase::acquire() throw ()
{
OSubComponent::acquire();
}
//--------------------------------------------------------------------------
-void OStatementBase::release() throw (RuntimeException)
+void OStatementBase::release() throw ()
{
OSubComponent::release();
}
@@ -465,13 +465,13 @@ Any OStatement::queryInterface( const Type & rType ) throw (RuntimeException)
}
//--------------------------------------------------------------------------
-void OStatement::acquire() throw (RuntimeException)
+void OStatement::acquire() throw ()
{
OStatementBase::acquire();
}
//--------------------------------------------------------------------------
-void OStatement::release() throw (RuntimeException)
+void OStatement::release() throw ()
{
OStatementBase::release();
}