summaryrefslogtreecommitdiff
path: root/fxjs/cjs_timerobj.h
diff options
context:
space:
mode:
Diffstat (limited to 'fxjs/cjs_timerobj.h')
-rw-r--r--fxjs/cjs_timerobj.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fxjs/cjs_timerobj.h b/fxjs/cjs_timerobj.h
index edc3def952..810b1b3711 100644
--- a/fxjs/cjs_timerobj.h
+++ b/fxjs/cjs_timerobj.h
@@ -16,7 +16,7 @@ class CJS_TimerObj : public CJS_Object {
static int GetObjDefnID();
static void DefineJSObjects(CFXJS_Engine* pEngine);
- explicit CJS_TimerObj(v8::Local<v8::Object> pObject);
+ CJS_TimerObj(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime);
~CJS_TimerObj() override;
void SetTimer(GlobalTimer* pTimer);
@@ -25,7 +25,7 @@ class CJS_TimerObj : public CJS_Object {
private:
static int ObjDefnID;
- int m_nTimerID; // Weak reference to GlobalTimer through global map.
+ int m_nTimerID = 0; // Weak reference to GlobalTimer through global map.
};
#endif // FXJS_CJS_TIMEROBJ_H_