summaryrefslogtreecommitdiffstats
path: root/include/com
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-06-29 15:58:26 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-06-30 09:48:24 +0200
commit9eaf613f3116fbe32af1582a8cef56d1220bb7ef (patch)
tree32a696c76762f103166669b275f30774ce3b8dbd /include/com
parentFix typo (diff)
downloadcore-9eaf613f3116fbe32af1582a8cef56d1220bb7ef.tar.gz
core-9eaf613f3116fbe32af1582a8cef56d1220bb7ef.zip
Fix typo
Change-Id: I1b43e186bd6e9de7332513e60f3be1bbe9d8ff82 Reviewed-on: https://gerrit.libreoffice.org/74901 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'include/com')
-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.