diff options
Diffstat (limited to 'xfa/fwl/core/ifwl_timer.cpp')
-rw-r--r-- | xfa/fwl/core/ifwl_timer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fwl/core/ifwl_timer.cpp b/xfa/fwl/core/ifwl_timer.cpp index 3f81eec476..c6f431c3be 100644 --- a/xfa/fwl/core/ifwl_timer.cpp +++ b/xfa/fwl/core/ifwl_timer.cpp @@ -28,6 +28,6 @@ IFWL_TimerInfo* IFWL_Timer::StartTimer(uint32_t dwElapse, bool bImmediately) { return pTimerInfo; } -FWL_Error IFWL_TimerInfo::StopTimer() { - return m_pMgr->Stop(this); +void IFWL_TimerInfo::StopTimer() { + m_pMgr->Stop(this); } |