[Common-cvs] container/pub hxslist.h,1.9,1.10
chopaul at helixcommunity.org chopaul at helixcommunity.orgUpdate of /cvsroot/common/container/pub
In directory cvs:/tmp/cvs-serv23944/pub
Modified Files:
hxslist.h
Log Message:
Changed CHXSimpleList::Find function to const
Index: hxslist.h
===================================================================
RCS file: /cvsroot/common/container/pub/hxslist.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- hxslist.h 14 Mar 2005 19:33:48 -0000 1.9
+++ hxslist.h 30 Nov 2005 00:57:57 -0000 1.10
@@ -135,7 +135,7 @@
virtual LISTPOSITION InsertAfter(LISTPOSITION pos, void* value);
// search for value in list
- virtual LISTPOSITION Find(void* value, LISTPOSITION start=NULL);
+ virtual LISTPOSITION Find(void* value, LISTPOSITION start=NULL) const;
// get the LISTPOSITION for element at index
LISTPOSITION FindIndex(int index) const;