From 43d021029efd73b13065faa20a0925ce700cbfcc Mon Sep 17 00:00:00 2001 From: "brendan%mozilla.org" Date: Sat, 17 Jul 1999 03:27:10 +0000 Subject: [PATCH] Use PRUint32 instead of unsigned long. --- xpcom/ds/nsICollection.idl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xpcom/ds/nsICollection.idl b/xpcom/ds/nsICollection.idl index 7720ef276f3..52b300b58cc 100644 --- a/xpcom/ds/nsICollection.idl +++ b/xpcom/ds/nsICollection.idl @@ -23,9 +23,9 @@ interface nsICollection : nsISupports { - unsigned long Count(); - nsISupports GetElementAt(in unsigned long index); - void SetElementAt(in unsigned long index, in nsISupports item); + PRUint32 Count(); + nsISupports GetElementAt(in PRUint32 index); + void SetElementAt(in PRUint32 index, in nsISupports item); void AppendElement(in nsISupports item); void RemoveElement(in nsISupports item);