From 3ef557a682ba2bc796a898ade30e8c1fd7c0d267 Mon Sep 17 00:00:00 2001
From: Jens-Heiner Rechtien
Date: Wed, 14 Apr 2004 10:53:56 +0000
Subject: 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 <
---
cppu/inc/com/sun/star/uno/Reference.h | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
(limited to 'cppu/inc/com')
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.
--
cgit