From 12f72bfc06198fcddf86f366adbbdeb152163b0e Mon Sep 17 00:00:00 2001 From: dsinclair Date: Thu, 10 Nov 2016 10:25:32 -0800 Subject: Continue cleaning IFWL classes More work cleaning up visiblity, unused methods and return values. Review-Url: https://codereview.chromium.org/2489013002 --- xfa/fwl/core/ifwl_timer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xfa/fwl/core/ifwl_timer.cpp') 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); } -- cgit v1.2.3