Fix stale comment added in last rev.

This commit is contained in:
brendan%mozilla.org 2005-05-21 06:32:12 +00:00
parent 742852d623
commit 9aae66357d

View File

@ -109,9 +109,9 @@ JSExtendedClass XPCNativeWrapper::sXPC_NW_JSClass = {
// the wrapped native's flat JSObject, so the hook and args macro parameters
// can be simply:
//
// getProperty, (cx, obj, id, vp)
// addProperty, (cx, obj, id, vp)
//
// in the call from XPC_NW_GetProperty, for example.
// in the call from XPC_NW_AddProperty, for example.
#define XPC_NW_CALL_HOOK(cx, obj, hook, args) \
return JS_GET_CLASS(cx, obj)->hook args;