diff options
Diffstat (limited to 'xfa/fwl/cfwl_timer.h')
-rw-r--r-- | xfa/fwl/cfwl_timer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fwl/cfwl_timer.h b/xfa/fwl/cfwl_timer.h index 93de009ed1..da1b4437e2 100644 --- a/xfa/fwl/cfwl_timer.h +++ b/xfa/fwl/cfwl_timer.h @@ -7,8 +7,8 @@ #ifndef XFA_FWL_CFWL_TIMER_H_ #define XFA_FWL_CFWL_TIMER_H_ -#include "core/fxcrt/cfx_unowned_ptr.h" #include "core/fxcrt/fx_system.h" +#include "core/fxcrt/unowned_ptr.h" class CFWL_TimerInfo; class CFWL_Widget; @@ -22,7 +22,7 @@ class CFWL_Timer { CFWL_TimerInfo* StartTimer(uint32_t dwElapse, bool bImmediately); protected: - CFX_UnownedPtr<CFWL_Widget> m_pWidget; + UnownedPtr<CFWL_Widget> m_pWidget; }; #endif // XFA_FWL_CFWL_TIMER_H_ |