summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-04-14 10:53:56 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-04-14 10:53:56 +0000
commit3ef557a682ba2bc796a898ade30e8c1fd7c0d267 (patch)
tree3e616e9287be2e6caaa87ac7a4be8f8e543b0b4c /cppu
parente88a914cd3b17c6566fe832bbecbf9a6c10d98f2 (diff)
INTEGRATION: CWS unopkg1 (1.13.2); FILE MERGED
2004/03/02 14:52:25 dbo 1.13.2.2: RESYNC: (1.13-1.14); FILE MERGED 2003/12/01 15:38:29 dbo 1.13.2.1: #112920# fixing operator <
Diffstat (limited to 'cppu')
-rw-r--r--cppu/inc/com/sun/star/uno/Reference.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/cppu/inc/com/sun/star/uno/Reference.h b/cppu/inc/com/sun/star/uno/Reference.h
index 9a4ef71bc728..5cec8993d183 100644
--- a/cppu/inc/com/sun/star/uno/Reference.h
+++ b/cppu/inc/com/sun/star/uno/Reference.h
@@ -2,9 +2,9 @@
*
* $RCSfile: Reference.h,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: hr $ $Date: 2004-02-03 12:15:03 $
+ * last change: $Author: hr $ $Date: 2004-04-14 11:53:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -176,11 +176,12 @@ public:
*/
inline sal_Bool SAL_CALL operator != ( const BaseReference & rRef ) const SAL_THROW( () );
- /** needed for some stl container operations, though this makes no sense on pointers
- @internal
+ /** Needed by some STL containers.
+
+ @param rRef another reference
+ @return true, if this reference is less than rRef
*/
- inline sal_Bool SAL_CALL operator < ( const BaseReference & rRef ) const SAL_THROW( () )
- { return (_pInterface < rRef._pInterface); }
+ inline sal_Bool SAL_CALL operator < ( const BaseReference & rRef ) const SAL_THROW( () );
};
/** Enum defining UNO_QUERY and UNO_REF_QUERY for implicit interface query.