| Index: fpdfsdk/include/pdfwindow/PWL_Edit.h
|
| diff --git a/fpdfsdk/include/pdfwindow/PWL_Edit.h b/fpdfsdk/include/pdfwindow/PWL_Edit.h
|
| index e93afaaa0046578ab7018e6cb9859f376ba05650..0d764c0f89c78ee252d552f2d0f4ae71f6e97e10 100644
|
| --- a/fpdfsdk/include/pdfwindow/PWL_Edit.h
|
| +++ b/fpdfsdk/include/pdfwindow/PWL_Edit.h
|
| @@ -62,8 +62,8 @@ class CPWL_Edit : public CPWL_EditCtrl, public IFX_Edit_OprNotify {
|
| FX_BOOL OnMouseWheel(short zDelta,
|
| const CFX_FloatPoint& point,
|
| FX_DWORD nFlag) override;
|
| - FX_BOOL OnKeyDown(FX_WORD nChar, FX_DWORD nFlag) override;
|
| - FX_BOOL OnChar(FX_WORD nChar, FX_DWORD nFlag) override;
|
| + FX_BOOL OnKeyDown(uint16_t nChar, FX_DWORD nFlag) override;
|
| + FX_BOOL OnChar(uint16_t nChar, FX_DWORD nFlag) override;
|
| CFX_FloatRect GetFocusRect() const override;
|
| void OnSetFocus() override;
|
| void OnKillFocus() override;
|
| @@ -154,7 +154,7 @@ class CPWL_Edit : public CPWL_EditCtrl, public IFX_Edit_OprNotify {
|
| FX_BOOL bArabic) const;
|
|
|
| public:
|
| - FX_BOOL IsProceedtoOnChar(FX_WORD nKeyCode, FX_DWORD nFlag);
|
| + FX_BOOL IsProceedtoOnChar(uint16_t nKeyCode, FX_DWORD nFlag);
|
|
|
| private:
|
| IPWL_Filler_Notify* m_pFillerNotify;
|
|
|