diff options
Diffstat (limited to 'xfa/fwl')
-rw-r--r-- | xfa/fwl/cfwl_timer.cpp | 8 | ||||
-rw-r--r-- | xfa/fwl/cfwl_timer.h | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/xfa/fwl/cfwl_timer.cpp b/xfa/fwl/cfwl_timer.cpp index 07d8461b9f..b7c54fdab1 100644 --- a/xfa/fwl/cfwl_timer.cpp +++ b/xfa/fwl/cfwl_timer.cpp @@ -25,13 +25,13 @@ CFWL_TimerInfo* CFWL_Timer::StartTimer(uint32_t dwElapse, bool bImmediately) { if (!pAdapterNative) return nullptr; - if (!m_pTimeMgrAdapter) - m_pTimeMgrAdapter = pAdapterNative->GetTimerMgr(); + if (!m_pAdapterTimerMgr) + m_pAdapterTimerMgr = pAdapterNative->NewTimerMgr(); - if (!m_pTimeMgrAdapter) + if (!m_pAdapterTimerMgr) return nullptr; CFWL_TimerInfo* pTimerInfo = nullptr; - m_pTimeMgrAdapter->Start(this, dwElapse, bImmediately, &pTimerInfo); + m_pAdapterTimerMgr->Start(this, dwElapse, bImmediately, &pTimerInfo); return pTimerInfo; } diff --git a/xfa/fwl/cfwl_timer.h b/xfa/fwl/cfwl_timer.h index 355ea69d67..586c2f3e40 100644 --- a/xfa/fwl/cfwl_timer.h +++ b/xfa/fwl/cfwl_timer.h @@ -26,7 +26,7 @@ class CFWL_Timer { protected: UnownedPtr<CFWL_Widget> m_pWidget; - std::unique_ptr<IFWL_AdapterTimerMgr> m_pTimeMgrAdapter; + std::unique_ptr<IFWL_AdapterTimerMgr> m_pAdapterTimerMgr; }; #endif // XFA_FWL_CFWL_TIMER_H_ |