From f3efd5109184482e099ef477f2cbc2cb3eceb83b Mon Sep 17 00:00:00 2001 From: "mjudge%netscape.com" Date: Thu, 3 Dec 1998 21:46:51 +0000 Subject: [PATCH] new enumerator interface change --- xpcom/ds/nsIEnumerator.h | 2 +- xpcom/public/nsIEnumerator.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xpcom/ds/nsIEnumerator.h b/xpcom/ds/nsIEnumerator.h index 54d3b142e37..16a9ba53ac6 100644 --- a/xpcom/ds/nsIEnumerator.h +++ b/xpcom/ds/nsIEnumerator.h @@ -56,7 +56,7 @@ public: * and it is the end of the list following a call to next * @param aItem return value */ - virtual nsresult IsDone(PRBool *aDone)=0; + virtual nsresult IsDone()=0; }; diff --git a/xpcom/public/nsIEnumerator.h b/xpcom/public/nsIEnumerator.h index 54d3b142e37..16a9ba53ac6 100644 --- a/xpcom/public/nsIEnumerator.h +++ b/xpcom/public/nsIEnumerator.h @@ -56,7 +56,7 @@ public: * and it is the end of the list following a call to next * @param aItem return value */ - virtual nsresult IsDone(PRBool *aDone)=0; + virtual nsresult IsDone()=0; };