diff options
Diffstat (limited to 'fxjs/cjs_global.cpp')
-rw-r--r-- | fxjs/cjs_global.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fxjs/cjs_global.cpp b/fxjs/cjs_global.cpp index 95124ff84d..23763544f5 100644 --- a/fxjs/cjs_global.cpp +++ b/fxjs/cjs_global.cpp @@ -174,8 +174,7 @@ class JSGlobalAlternate : public CJS_EmbedObj { } // namespace const JSMethodSpec CJS_Global::MethodSpecs[] = { - {"setPersistent", setPersistent_static}, - {0, 0}}; + {"setPersistent", setPersistent_static}}; int CJS_Global::ObjDefnID = -1; @@ -227,7 +226,7 @@ void CJS_Global::DefineJSObjects(CFXJS_Engine* pEngine) { ObjDefnID = pEngine->DefineObj("global", FXJSOBJTYPE_STATIC, JSConstructor<CJS_Global, JSGlobalAlternate>, JSDestructor<CJS_Global>); - DefineMethods(pEngine, ObjDefnID, MethodSpecs); + DefineMethods(pEngine, ObjDefnID, MethodSpecs, FX_ArraySize(MethodSpecs)); DefineAllProperties(pEngine); } |