From ce6c2717ae3dc95e40b47a6888ef8a449189abc8 Mon Sep 17 00:00:00 2001 From: "caillon%returnzero.com" Date: Tue, 11 Nov 2003 21:53:36 +0000 Subject: [PATCH] Microsoft didn't prefix their core interface names with 'ns'. Fixing comment grammar. No bug. r=timeless rs=dbaron git-svn-id: svn://10.0.0.236/trunk@149168 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpcom/base/nsISupportsBase.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mozilla/xpcom/base/nsISupportsBase.h b/mozilla/xpcom/base/nsISupportsBase.h index 63ec1f209b5..bea876f5485 100644 --- a/mozilla/xpcom/base/nsISupportsBase.h +++ b/mozilla/xpcom/base/nsISupportsBase.h @@ -50,8 +50,8 @@ * IID for the nsISupports interface * {00000000-0000-0000-c000-000000000046} * - * To maintain binary compatibility with COM's nsIUnknown, we define the IID - * of nsISupports to be the same as that of COM's nsIUnknown. + * To maintain binary compatibility with COM's IUnknown, we define the IID + * of nsISupports to be the same as that of COM's IUnknown. */ #define NS_ISUPPORTS_IID \ { 0x00000000, 0x0000, 0x0000, \ @@ -60,10 +60,10 @@ /** * Reference count values * - * This is type of return value from Addref() and Release() in nsISupports. - * nsIUnknown of COM returns a unsigned long from equivalent functions. - * To maintain binary compatibility of nsISupports with nsIUnknown, we are - * doing this ifdeffing. + * This is the return type for AddRef() and Release() in nsISupports. + * IUnknown of COM returns an unsigned long from equivalent functions. + * The following ifdef exists to maintain binary compatibility with + * IUnknown. */ #if defined(XP_WIN) && PR_BYTES_PER_LONG == 4 typedef unsigned long nsrefcnt;