Getting it to compile on the mac.

This commit is contained in:
dougt%netscape.com 1999-05-10 20:15:02 +00:00
Родитель 1677f15d98
Коммит 50514f6961
2 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

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

Просмотреть файл

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