diff options
Diffstat (limited to 'xfa/fwl/core/ifwl_timer.h')
-rw-r--r-- | xfa/fwl/core/ifwl_timer.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/xfa/fwl/core/ifwl_timer.h b/xfa/fwl/core/ifwl_timer.h index 7562085060..71fe6bf188 100644 --- a/xfa/fwl/core/ifwl_timer.h +++ b/xfa/fwl/core/ifwl_timer.h @@ -8,7 +8,6 @@ #define XFA_FWL_CORE_IFWL_TIMER_H_ #include "core/fxcrt/fx_system.h" -#include "xfa/fwl/core/fwl_error.h" class IFWL_AdapterTimerMgr; class IFWL_TimerInfo; @@ -33,9 +32,9 @@ class IFWL_TimerInfo { } virtual ~IFWL_TimerInfo() {} - FWL_Error StopTimer(); + void StopTimer(); - protected: + private: IFWL_AdapterTimerMgr* m_pMgr; // Not owned. }; |