summaryrefslogtreecommitdiff
path: root/include/com/sun/star/uno/Any.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/com/sun/star/uno/Any.h')
-rw-r--r--include/com/sun/star/uno/Any.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/com/sun/star/uno/Any.h b/include/com/sun/star/uno/Any.h
index 4c52167a6b67..2a8cf3d05192 100644
--- a/include/com/sun/star/uno/Any.h
+++ b/include/com/sun/star/uno/Any.h
@@ -272,7 +272,7 @@ public:
@return true if both any contains equal values
*/
inline bool SAL_CALL operator == ( const Any & rAny ) const;
- /** Unequality operator: compares two anys.
+ /** Inequality operator: compares two anys.
The values need not be of equal type, e.g. a short integer is compared to a long integer.
@param rAny another any (right side)
@@ -392,7 +392,7 @@ inline bool SAL_CALL operator >>= ( const Any & rAny, C & value );
*/
template< class C >
inline bool SAL_CALL operator == ( const Any & rAny, const C & value );
-/** Template unequality operator: compares set value of left side any to right side value.
+/** Template inequality operator: compares set value of left side any to right side value.
The values need not be of equal type, e.g. a short integer is compared to a long integer.
This operator can be implemented as template member function, if all supported compilers
can cope with template member functions.