summaryrefslogtreecommitdiffstats
path: root/cppu
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2001-12-17 11:49:34 +0000
committerDaniel Boelzle <dbo@openoffice.org>2001-12-17 11:49:34 +0000
commitbb0a9b9d8a911f020afa2edfa994161668e4ef0a (patch)
treeea725d4916cb1b1d963536d429e8a988b39aae31 /cppu
parent#88919# (diff)
downloadcore-bb0a9b9d8a911f020afa2edfa994161668e4ef0a.tar.gz
core-bb0a9b9d8a911f020afa2edfa994161668e4ef0a.zip
#88919# avoiding cc5 warnings
Diffstat (limited to 'cppu')
-rw-r--r--cppu/inc/com/sun/star/uno/Any.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/cppu/inc/com/sun/star/uno/Any.hxx b/cppu/inc/com/sun/star/uno/Any.hxx
index b15f285ea03e..13981ff54820 100644
--- a/cppu/inc/com/sun/star/uno/Any.hxx
+++ b/cppu/inc/com/sun/star/uno/Any.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: Any.hxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: dbo $ $Date: 2001-11-09 09:14:30 $
+ * last change: $Author: dbo $ $Date: 2001-12-17 12:49:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -111,10 +111,10 @@ inline Any::Any( const void * pData_, typelib_TypeDescription * pTypeDescr ) SAL
this, const_cast< void * >( pData_ ), pTypeDescr, (uno_AcquireFunc)cpp_acquire );
}
//__________________________________________________________________________________________________
-inline Any::Any( const void * pData_, typelib_TypeDescriptionReference * pType ) SAL_THROW( () )
+inline Any::Any( const void * pData_, typelib_TypeDescriptionReference * pType_ ) SAL_THROW( () )
{
::uno_type_any_construct(
- this, const_cast< void * >( pData_ ), pType, (uno_AcquireFunc)cpp_acquire );
+ this, const_cast< void * >( pData_ ), pType_, (uno_AcquireFunc)cpp_acquire );
}
//__________________________________________________________________________________________________
inline Any::~Any() SAL_THROW( () )
@@ -146,10 +146,10 @@ inline void Any::setValue( const void * pData_, const Type & rType ) SAL_THROW(
(uno_AcquireFunc)cpp_acquire, (uno_ReleaseFunc)cpp_release );
}
//__________________________________________________________________________________________________
-inline void Any::setValue( const void * pData_, typelib_TypeDescriptionReference * pType ) SAL_THROW( () )
+inline void Any::setValue( const void * pData_, typelib_TypeDescriptionReference * pType_ ) SAL_THROW( () )
{
::uno_type_any_assign(
- this, const_cast< void * >( pData_ ), pType,
+ this, const_cast< void * >( pData_ ), pType_,
(uno_AcquireFunc)cpp_acquire, (uno_ReleaseFunc)cpp_release );
}
//__________________________________________________________________________________________________