summaryrefslogtreecommitdiff
path: root/cppu/source/uno/any.cxx
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2001-03-09 11:10:57 +0000
committerDaniel Boelzle <dbo@openoffice.org>2001-03-09 11:10:57 +0000
commitfee2a34fc7ce4301dd5335dd7c6072f5696480dd (patch)
tree8d9520635af5a7149d58b21bf75d0a38af80ee15 /cppu/source/uno/any.cxx
parent6014186320950379ba1ff0a102f792d233b6babe (diff)
revised function throw () clauses
Diffstat (limited to 'cppu/source/uno/any.cxx')
-rw-r--r--cppu/source/uno/any.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/cppu/source/uno/any.cxx b/cppu/source/uno/any.cxx
index 5970075b5ca4..1318ec230b1a 100644
--- a/cppu/source/uno/any.cxx
+++ b/cppu/source/uno/any.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: any.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: dbo $ $Date: 2000-12-21 14:39:28 $
+ * last change: $Author: dbo $ $Date: 2001-03-09 12:10:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -72,7 +72,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_any_assign(
uno_Any * pDest, void * pSource,
typelib_TypeDescriptionReference * pType,
uno_AcquireFunc acquire, uno_ReleaseFunc release )
- throw ()
+ SAL_THROW_EXTERN_C()
{
__destructAny( pDest, release );
if (pType)
@@ -89,7 +89,7 @@ SAL_DLLEXPORT void SAL_CALL uno_any_assign(
uno_Any * pDest, void * pSource,
typelib_TypeDescription * pTypeDescr,
uno_AcquireFunc acquire, uno_ReleaseFunc release )
- throw ()
+ SAL_THROW_EXTERN_C()
{
__destructAny( pDest, release );
if (pTypeDescr)
@@ -106,7 +106,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_any_construct(
uno_Any * pDest, void * pSource,
typelib_TypeDescriptionReference * pType,
uno_AcquireFunc acquire )
- throw ()
+ SAL_THROW_EXTERN_C()
{
if (pType)
{
@@ -122,7 +122,7 @@ SAL_DLLEXPORT void SAL_CALL uno_any_construct(
uno_Any * pDest, void * pSource,
typelib_TypeDescription * pTypeDescr,
uno_AcquireFunc acquire )
- throw ()
+ SAL_THROW_EXTERN_C()
{
if (pTypeDescr)
{
@@ -138,7 +138,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_any_constructAndConvert(
uno_Any * pDest, void * pSource,
typelib_TypeDescriptionReference * pType,
uno_Mapping * mapping )
- throw ()
+ SAL_THROW_EXTERN_C()
{
if (pType)
{
@@ -154,7 +154,7 @@ SAL_DLLEXPORT void SAL_CALL uno_any_constructAndConvert(
uno_Any * pDest, void * pSource,
typelib_TypeDescription * pTypeDescr,
uno_Mapping * mapping )
- throw ()
+ SAL_THROW_EXTERN_C()
{
if (pTypeDescr)
{
@@ -167,7 +167,7 @@ SAL_DLLEXPORT void SAL_CALL uno_any_constructAndConvert(
}
//##################################################################################################
SAL_DLLEXPORT void SAL_CALL uno_any_destruct( uno_Any * pValue, uno_ReleaseFunc release )
- throw ()
+ SAL_THROW_EXTERN_C()
{
__destructAny( pValue, release );
}