fix new warnings resulting from my carpool

This commit is contained in:
jband%netscape.com 1999-12-18 22:33:18 +00:00
Родитель 65805af7ac
Коммит c27916de03
3 изменённых файлов: 16 добавлений и 17 удалений

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

@ -230,21 +230,21 @@ struct NativeCallContextData
{
// no ctor or dtor so we have random state at creation.
void init(nsISupports* callee,
uint16 index,
nsIXPConnectWrappedNative* wrapper,
JSContext* cx,
PRUint32 argc,
jsval* argv,
jsval* retvalp)
void init(nsISupports* acallee,
uint16 aindex,
nsIXPConnectWrappedNative* awrapper,
JSContext* acx,
PRUint32 aargc,
jsval* aargv,
jsval* aretvalp)
{
this->callee = callee;
this->index = index;
this->wrapper = wrapper;
this->cx = cx;
this->argc = argc;
this->argv = argv;
this->retvalp = retvalp;
this->callee = acallee;
this->index = aindex;
this->wrapper = awrapper;
this->cx = acx;
this->argc = aargc;
this->argv = aargv;
this->retvalp = aretvalp;
this->threw = JS_FALSE;
}

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

@ -226,9 +226,9 @@ XPCJSThrower::ThrowExceptionObject(JSContext* cx, nsIXPCException* e)
return JS_FALSE;
// XXX funky
JSObject* obj = JS_GetGlobalObject(cx);
JSObject* glob = JS_GetGlobalObject(cx);
rv = xpc->WrapNative(cx, obj, e, NS_GET_IID(nsIXPCException), &wrapper);
rv = xpc->WrapNative(cx, glob, e, NS_GET_IID(nsIXPCException), &wrapper);
NS_RELEASE(xpc);
if(NS_SUCCEEDED(rv))
{

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

@ -271,7 +271,6 @@ nsXPCWrappedNativeClass::DestroyMemberDescriptors()
{
if(!mDescriptors)
return;
JSRuntime* rt = mRuntime->GetJSRuntime();
delete [] mDescriptors;
mDescriptors = nsnull;
}