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/fxfa/app/xfa_ffchoicelist.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/fxfa/app/xfa_ffchoicelist.h')
-rw-r--r-- | xfa/fxfa/app/xfa_ffchoicelist.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fxfa/app/xfa_ffchoicelist.h b/xfa/fxfa/app/xfa_ffchoicelist.h index 1699b18039..3d8863c066 100644 --- a/xfa/fxfa/app/xfa_ffchoicelist.h +++ b/xfa/fxfa/app/xfa_ffchoicelist.h @@ -21,7 +21,7 @@ class CXFA_FFListBox : public CXFA_FFField { virtual FX_BOOL CommitData(); virtual FX_BOOL UpdateFWLData(); virtual FX_BOOL IsDataChanged(); - FX_DWORD GetAlignment(); + uint32_t GetAlignment(); public: void OnSelectChanged(IFWL_Widget* pWidget, const CFX_Int32Array& arrSels); @@ -41,11 +41,11 @@ class CXFA_FFComboBox : public CXFA_FFField { CXFA_FFComboBox(CXFA_FFPageView* pPageView, CXFA_WidgetAcc* pDataAcc); virtual ~CXFA_FFComboBox(); virtual FX_BOOL GetBBox(CFX_RectF& rtBox, - FX_DWORD dwStatus, + uint32_t dwStatus, FX_BOOL bDrawFocus = FALSE); virtual FX_BOOL LoadWidget(); virtual void UpdateWidgetProperty(); - virtual FX_BOOL OnRButtonUp(FX_DWORD dwFlags, FX_FLOAT fx, FX_FLOAT fy); + virtual FX_BOOL OnRButtonUp(uint32_t dwFlags, FX_FLOAT fx, FX_FLOAT fy); virtual FX_BOOL OnKillFocus(CXFA_FFWidget* pNewWidget); virtual FX_BOOL CanUndo(); virtual FX_BOOL CanRedo(); @@ -69,7 +69,7 @@ class CXFA_FFComboBox : public CXFA_FFField { virtual FX_BOOL CommitData(); virtual FX_BOOL UpdateFWLData(); virtual FX_BOOL IsDataChanged(); - FX_DWORD GetAlignment(); + uint32_t GetAlignment(); void FWLEventSelChange(CXFA_EventParam* pParam); CFX_WideString m_wsNewValue; |