From 3e60b6f7c12c8a0479a9e57fdc0a951318196632 Mon Sep 17 00:00:00 2001 From: "rjesup%wgate.com" Date: Wed, 2 Nov 2005 16:04:57 +0000 Subject: [PATCH] Remove nsVoidArray:: from method defs --- xpcom/glue/nsVoidArray.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xpcom/glue/nsVoidArray.h b/xpcom/glue/nsVoidArray.h index 152975d2bbf..eb87452f687 100644 --- a/xpcom/glue/nsVoidArray.h +++ b/xpcom/glue/nsVoidArray.h @@ -72,7 +72,7 @@ public: return mImpl ? PRInt32(mImpl->mBits & kArraySizeMask) : 0; } - void* nsVoidArray::ElementAt(PRInt32 aIndex) const + void* ElementAt(PRInt32 aIndex) const { NS_ASSERTION(aIndex >= 0,"nsVoidArray::ElementAt(negative index) - note on bug 96108"); NS_ASSERTION(aIndex < Count(),"nsVoidArray::ElementAt(index past end array) - note on bug 96108"); @@ -87,7 +87,7 @@ public: } // bounds-checked version - void* nsVoidArray::SafeElementAt(PRInt32 aIndex) const + void* SafeElementAt(PRInt32 aIndex) const { if (aIndex < 0 || aIndex >= Count()) {