diff options
Diffstat (limited to 'fxjs/cjs_color.cpp')
-rw-r--r-- | fxjs/cjs_color.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fxjs/cjs_color.cpp b/fxjs/cjs_color.cpp index a730b2cebf..1568687365 100644 --- a/fxjs/cjs_color.cpp +++ b/fxjs/cjs_color.cpp @@ -35,6 +35,11 @@ int CJS_Color::ObjDefnID = -1; const char CJS_Color::kName[] = "color"; // static +int CJS_Color::GetObjDefnID() { + return ObjDefnID; +} + +// static void CJS_Color::DefineJSObjects(CFXJS_Engine* pEngine) { ObjDefnID = pEngine->DefineObj(CJS_Color::kName, FXJSOBJTYPE_STATIC, JSConstructor<CJS_Color>, JSDestructor); |