From 3ed71250d81bddbbc4eed0c0f447740557f5e8a1 Mon Sep 17 00:00:00 2001 From: chatty Date: Thu, 5 May 1994 08:48:36 +0000 Subject: Added arg to CcuListOf::Find --- utils/List.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/List.h b/utils/List.h index 342a907..552f197 100644 --- a/utils/List.h +++ b/utils/List.h @@ -125,7 +125,7 @@ inline CcuListOf (ITEM* it) : CcuList (it) {} inline ITEM* First () { return (ITEM*) (CcuList::First ()); } inline ITEM* Last () { return (ITEM*) (CcuList::Last ()); } inline ITEM* Nth (int n) { return (ITEM*) (CcuList::Nth (n)); } -inline int Find (ITEM* it) const { return CcuList::Find (it); } +inline int Find (ITEM* it, int* r = 0) const { return CcuList::Find (it, r); } inline void Append (ITEM* it) { CcuList::Append (it); } inline void Prepend (ITEM* it) { CcuList::Prepend (it); } -- cgit v1.1