Getting it to compile on the mac.

This commit is contained in:
dougt%netscape.com 1999-05-10 20:15:02 +00:00
parent 1677f15d98
commit 50514f6961
2 changed files with 6 additions and 6 deletions

View File

@ -74,7 +74,7 @@ nsProxyEventObject::GetNewOrUsedProxy(PLEventQueue *destQueue,
else
{
// build the root proxy
if (aObj = rootObject)
if (aObj == rootObject)
{
// the root will do double duty as the interface wrapper
proxy = root = new nsProxyEventObject(destQueue, aObj, clazz, nsnull);

View File

@ -98,11 +98,11 @@ public:
virtual ~nsProxyEventObject();
private:
nsProxyEventObject::nsProxyEventObject(); // not implemented
nsProxyEventObject::nsProxyEventObject(PLEventQueue *destQueue,
nsISupports* aObj,
nsProxyEventClass* aClass,
nsProxyEventObject* root);
nsProxyEventObject(); // not implemented
nsProxyEventObject(PLEventQueue *destQueue,
nsISupports* aObj,
nsProxyEventClass* aClass,
nsProxyEventObject* root);
nsProxyObject* mProxyObject;