From ece28f466a6811dcea3d806113514e9b9bed545e Mon Sep 17 00:00:00 2001 From: "jdunn%netscape.com" Date: Wed, 17 Nov 1999 01:01:22 +0000 Subject: [PATCH] fixing HPUX 10.20's which was having problem with this definition since it was creating an unresolved symbol "static_iid" r= dougt@netscape.com # 19021 --- xpcom/proxy/src/nsProxyEventPrivate.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xpcom/proxy/src/nsProxyEventPrivate.h b/xpcom/proxy/src/nsProxyEventPrivate.h index e2ef1956ff92..5e206ad129e8 100644 --- a/xpcom/proxy/src/nsProxyEventPrivate.h +++ b/xpcom/proxy/src/nsProxyEventPrivate.h @@ -64,7 +64,7 @@ public: NS_DECL_ISUPPORTS - static const nsIID& GetIID() {static nsIID iid = kProxyEventClassIID; return iid;} + static const nsIID& GetIID() {static nsIID iid = NS_PROXYEVENT_CLASS_IID; return iid;} static nsProxyEventClass* GetNewOrUsedClass(REFNSIID aIID); NS_IMETHOD DelegatedQueryInterface( nsProxyEventObject* self, @@ -96,7 +96,7 @@ class nsProxyEventObject : public nsXPTCStubBase public: NS_DECL_ISUPPORTS - static const nsIID& GetIID() {static nsIID iid = kProxyEventObjectIID; return iid;} + static const nsIID& GetIID() {static nsIID iid = NS_PROXYEVENT_OBJECT_IID; return iid;} static nsProxyEventObject* GetNewOrUsedProxy(nsIEventQueue *destQueue, PRInt32 proxyType,