diff options
author | tsepez <tsepez@chromium.org> | 2016-03-25 14:38:58 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-25 14:38:58 -0700 |
commit | deee3d2ee201d62e7ef41e7d8378d7f52e057a9c (patch) | |
tree | f9f64d5f24376108a697299f8574ae3a7fe3511b /xfa/fwl/basewidget/fwl_caretimp.h | |
parent | 736f28ab2434e2da1de66ff91b64741483ff9cba (diff) | |
download | pdfium-deee3d2ee201d62e7ef41e7d8378d7f52e057a9c.tar.xz |
Remove FX_DWORD from XFA, part 2
Some headers were missed in the previous CL.
Review URL: https://codereview.chromium.org/1835703002
Diffstat (limited to 'xfa/fwl/basewidget/fwl_caretimp.h')
-rw-r--r-- | xfa/fwl/basewidget/fwl_caretimp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fwl/basewidget/fwl_caretimp.h b/xfa/fwl/basewidget/fwl_caretimp.h index c4b6015c01..47c3a1a7f5 100644 --- a/xfa/fwl/basewidget/fwl_caretimp.h +++ b/xfa/fwl/basewidget/fwl_caretimp.h @@ -22,7 +22,7 @@ class CFWL_CaretImp : public CFWL_WidgetImp { virtual ~CFWL_CaretImp(); virtual FWL_ERR GetClassName(CFX_WideString& wsClass) const; - virtual FX_DWORD GetClassID() const; + virtual uint32_t GetClassID() const; virtual FWL_ERR Initialize(); virtual FWL_ERR Finalize(); @@ -31,8 +31,8 @@ class CFWL_CaretImp : public CFWL_WidgetImp { const CFX_Matrix* pMatrix = NULL); virtual FWL_ERR ShowCaret(FX_BOOL bFlag = TRUE); - virtual FWL_ERR GetFrequency(FX_DWORD& elapse); - virtual FWL_ERR SetFrequency(FX_DWORD elapse); + virtual FWL_ERR GetFrequency(uint32_t& elapse); + virtual FWL_ERR SetFrequency(uint32_t elapse); virtual FWL_ERR SetColor(CFX_Color crFill); protected: @@ -48,7 +48,7 @@ class CFWL_CaretImp : public CFWL_WidgetImp { }; CFWL_CaretTimer* m_pTimer; FWL_HTIMER m_hTimer; - FX_DWORD m_dwElapse; + uint32_t m_dwElapse; CFX_Color m_crFill; FX_BOOL m_bSetColor; friend class CFWL_CaretImpDelegate; |