diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-02-21 23:16:31 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-02-21 23:16:31 +0100 |
commit | b1073d9fa264139333704f82553ade9979e2ca24 (patch) | |
tree | 7b26a9cdcf7a3b961f5ca176660d54c2c0bd135f /cppu/inc/com | |
parent | 41e8fe179f10f224433b26daba105ee92c661ac4 (diff) |
WaE: silence some documentation errors
Diffstat (limited to 'cppu/inc/com')
-rw-r--r-- | cppu/inc/com/sun/star/uno/Any.h | 4 | ||||
-rw-r--r-- | cppu/inc/com/sun/star/uno/Reference.h | 4 | ||||
-rw-r--r-- | cppu/inc/com/sun/star/uno/Sequence.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/cppu/inc/com/sun/star/uno/Any.h b/cppu/inc/com/sun/star/uno/Any.h index f5f2f72be8f8..18ef5a5f3bb4 100644 --- a/cppu/inc/com/sun/star/uno/Any.h +++ b/cppu/inc/com/sun/star/uno/Any.h @@ -126,7 +126,7 @@ public: { return * reinterpret_cast< const Type * >( &pType ); } /** Gets the type of the set value. - @return the UNacquired type description reference of the set value + @return the unacquired type description reference of the set value */ inline typelib_TypeDescriptionReference * SAL_CALL getValueTypeRef() const SAL_THROW(()) { return pType; } @@ -134,7 +134,7 @@ public: /** Gets the type description of the set value. Provides ownership of the type description! Call an explicit typelib_typedescription_release() to release afterwards. - @param a pointer to type description pointer + @param ppTypeDescr a pointer to type description pointer */ inline void SAL_CALL getValueTypeDescription( typelib_TypeDescription ** ppTypeDescr ) const SAL_THROW(()) { ::typelib_typedescriptionreference_getDescription( ppTypeDescr, pType ); } diff --git a/cppu/inc/com/sun/star/uno/Reference.h b/cppu/inc/com/sun/star/uno/Reference.h index 7e75a657e66f..50c7b77e23a5 100644 --- a/cppu/inc/com/sun/star/uno/Reference.h +++ b/cppu/inc/com/sun/star/uno/Reference.h @@ -105,14 +105,14 @@ public: /** Equality operator: compares two interfaces Checks if both references are null or refer to the same object. - @param rRef another interface + @param pInterface another interface @return true if both references are null or refer to the same object, false otherwise */ inline sal_Bool SAL_CALL operator == ( XInterface * pInterface ) const SAL_THROW(()); /** Unequality operator: compares two interfaces Checks if both references are null or refer to the same object. - @param rRef another interface + @param pInterface another interface @return false if both references are null or refer to the same object, true otherwise */ inline sal_Bool SAL_CALL operator != ( XInterface * pInterface ) const SAL_THROW(()); diff --git a/cppu/inc/com/sun/star/uno/Sequence.h b/cppu/inc/com/sun/star/uno/Sequence.h index f12b7c1e3b7b..380bcb77c56c 100644 --- a/cppu/inc/com/sun/star/uno/Sequence.h +++ b/cppu/inc/com/sun/star/uno/Sequence.h @@ -115,7 +115,7 @@ public: /** Constructor: Creates a copy of given elements. - @param pElement an array of elements + @param pElements an array of elements @param len length of array */ inline Sequence( const E * pElements, sal_Int32 len ); |