diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-04-23 19:15:24 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-04-23 19:17:42 +0200 |
commit | 8d1fbba77fdec3cdc7c7b1e28f9560243cbbd3ff (patch) | |
tree | f5111893fc257eb1713db12b41fe49c8acf14ee6 /cppuhelper | |
parent | f46f1421277d2432e3aef6923df13fc220bd15b9 (diff) |
doxygen warning fixes
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/inc/cppuhelper/interfacecontainer.h | 6 | ||||
-rw-r--r-- | cppuhelper/inc/cppuhelper/propshlp.hxx | 2 | ||||
-rw-r--r-- | cppuhelper/inc/cppuhelper/weak.hxx | 6 |
3 files changed, 8 insertions, 6 deletions
diff --git a/cppuhelper/inc/cppuhelper/interfacecontainer.h b/cppuhelper/inc/cppuhelper/interfacecontainer.h index 8282893ec851..77c39f646294 100644 --- a/cppuhelper/inc/cppuhelper/interfacecontainer.h +++ b/cppuhelper/inc/cppuhelper/interfacecontainer.h @@ -331,7 +331,7 @@ public: The lifetime must be longer than the lifetime of this object. */ - inline OMultiTypeInterfaceContainerHelperVar( ::osl::Mutex & ) SAL_THROW(()); + inline OMultiTypeInterfaceContainerHelperVar( ::osl::Mutex & rMutex ) SAL_THROW(()); /** Deletes all containers. */ @@ -450,7 +450,7 @@ struct OBroadcastHelperVar /** Initialize the structur. bDispose and bInDispose are set to false. - @param rMutex the mutex reference. + @param rMutex_ the mutex reference. */ OBroadcastHelperVar( ::osl::Mutex & rMutex_ ) SAL_THROW(()) : rMutex( rMutex_ ) @@ -536,7 +536,7 @@ public: The lifetime must be longer than the lifetime of this object. */ - OMultiTypeInterfaceContainerHelper( ::osl::Mutex & ) SAL_THROW(()); + OMultiTypeInterfaceContainerHelper( ::osl::Mutex & rMutex ) SAL_THROW(()); /** Delete all containers. */ diff --git a/cppuhelper/inc/cppuhelper/propshlp.hxx b/cppuhelper/inc/cppuhelper/propshlp.hxx index 08dee8822941..2812617d8f28 100644 --- a/cppuhelper/inc/cppuhelper/propshlp.hxx +++ b/cppuhelper/inc/cppuhelper/propshlp.hxx @@ -253,7 +253,7 @@ public: The lifetime must be longer than the lifetime of this object. */ - OMultiTypeInterfaceContainerHelperInt32( ::osl::Mutex & ) SAL_THROW(()); + OMultiTypeInterfaceContainerHelperInt32( ::osl::Mutex & rMutex ) SAL_THROW(()); /** Delete all containers. */ diff --git a/cppuhelper/inc/cppuhelper/weak.hxx b/cppuhelper/inc/cppuhelper/weak.hxx index 8838797dfe5d..99599ac08bc8 100644 --- a/cppuhelper/inc/cppuhelper/weak.hxx +++ b/cppuhelper/inc/cppuhelper/weak.hxx @@ -117,11 +117,13 @@ public: @param rObj dummy param */ - inline OWeakObject( const OWeakObject & ) SAL_THROW(()) + inline OWeakObject( const OWeakObject & rObj ) SAL_THROW(()) : com::sun::star::uno::XWeak() , m_refCount( 0 ) , m_pWeakConnectionPoint( 0 ) - {} + { + (void) rObj; + } /** Dummy assignment operator. Does not affect reference count. @return this OWeakObject |