From 93ca585eefe2dbff05e354395090ab20020cacbf Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Fri, 28 Jan 2005 14:25:48 +0000 Subject: INTEGRATION: CWS os47 (1.1.1.1.1056); FILE MERGED 2004/12/27 07:51:22 os 1.1.1.1.1056.1: #118841# operators of SwGlblDocContent should be const --- sw/inc/edglbldc.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sw/inc') diff --git a/sw/inc/edglbldc.hxx b/sw/inc/edglbldc.hxx index 9b1047bd22e0..9b8db26b7096 100644 --- a/sw/inc/edglbldc.hxx +++ b/sw/inc/edglbldc.hxx @@ -2,9 +2,9 @@ * * $RCSfile: edglbldc.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:14:25 $ + * last change: $Author: rt $ $Date: 2005-01-28 15:25:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -98,9 +98,9 @@ public: ULONG GetDocPos() const { return nDocPos; } // fuers Sortieren - inline int operator==( const SwGlblDocContent& rCmp ) + inline int operator==( const SwGlblDocContent& rCmp ) const { return GetDocPos() == rCmp.GetDocPos(); } - inline int operator<( const SwGlblDocContent& rCmp ) + inline int operator<( const SwGlblDocContent& rCmp ) const { return GetDocPos() < rCmp.GetDocPos(); } }; -- cgit