diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-06-29 16:00:28 +0000 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-06-30 09:47:46 +0200 |
commit | a379c1738bb2e012a5ae651e83ec712f10cf4aa3 (patch) | |
tree | 9f2b5b066289cfd594eea05d6ff35e85e2ea75d7 /include/com | |
parent | f91c5c6a112cf4afab24c4bc9bb7e7a408d7d345 (diff) |
Fix typo
Change-Id: I576da0e09f4a70361c0c5226ce80418680711f55
Reviewed-on: https://gerrit.libreoffice.org/74902
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'include/com')
-rw-r--r-- | include/com/sun/star/uno/Reference.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/com/sun/star/uno/Reference.h b/include/com/sun/star/uno/Reference.h index d0e415e808d5..5f4c8ddea85f 100644 --- a/include/com/sun/star/uno/Reference.h +++ b/include/com/sun/star/uno/Reference.h @@ -109,7 +109,7 @@ public: @return true if both references are null or refer to the same object, false otherwise */ inline bool SAL_CALL operator == ( XInterface * pInterface ) const; - /** Unequality operator: compares two interfaces + /** Inequality operator: compares two interfaces Checks if both references are null or refer to the same object. @param pInterface another interface @@ -124,7 +124,7 @@ public: @return true if both references are null or refer to the same object, false otherwise */ inline bool SAL_CALL operator == ( const BaseReference & rRef ) const; - /** Unequality operator: compares two interfaces + /** Inequality operator: compares two interfaces Checks if both references are null or refer to the same object. @param rRef another reference |