summaryrefslogtreecommitdiff
path: root/fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h')
-rw-r--r--fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h b/fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h
index 3fc56ee0e7..092148f4f2 100644
--- a/fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h
+++ b/fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h
@@ -33,9 +33,8 @@ class CXFA_FWLAdapterTimerMgr : public IFWL_AdapterTimerMgr {
};
struct CFWL_TimerInfo : public IFWL_TimerInfo {
- CFWL_TimerInfo() : pTimer(nullptr) {}
- CFWL_TimerInfo(int32_t event, IFWL_Timer* timer)
- : idEvent(event), pTimer(timer) {}
+ CFWL_TimerInfo(IFWL_AdapterTimerMgr* mgr, int32_t event, IFWL_Timer* timer)
+ : IFWL_TimerInfo(mgr), idEvent(event), pTimer(timer) {}
int32_t idEvent;
IFWL_Timer* pTimer;