| Index: fpdfsdk/pdfwindow/PWL_SpecialButton.h
|
| diff --git a/fpdfsdk/pdfwindow/PWL_SpecialButton.h b/fpdfsdk/pdfwindow/PWL_SpecialButton.h
|
| index 5aaf19b3a80afa1fcc5311651541a5b505ee9705..eaaba26c68ab68f0e37e2987607ff59c31d6e481 100644
|
| --- a/fpdfsdk/pdfwindow/PWL_SpecialButton.h
|
| +++ b/fpdfsdk/pdfwindow/PWL_SpecialButton.h
|
| @@ -26,8 +26,8 @@ class CPWL_CheckBox : public CPWL_Button {
|
|
|
| // CPWL_Button
|
| CFX_ByteString GetClassName() const override;
|
| - FX_BOOL OnLButtonUp(const CFX_FloatPoint& point, FX_DWORD nFlag) override;
|
| - FX_BOOL OnChar(uint16_t nChar, FX_DWORD nFlag) override;
|
| + FX_BOOL OnLButtonUp(const CFX_FloatPoint& point, uint32_t nFlag) override;
|
| + FX_BOOL OnChar(uint16_t nChar, uint32_t nFlag) override;
|
|
|
| void SetCheck(bool bCheck);
|
| bool IsChecked() const;
|
| @@ -43,8 +43,8 @@ class CPWL_RadioButton : public CPWL_Button {
|
|
|
| // CPWL_Button
|
| CFX_ByteString GetClassName() const override;
|
| - FX_BOOL OnLButtonUp(const CFX_FloatPoint& point, FX_DWORD nFlag) override;
|
| - FX_BOOL OnChar(uint16_t nChar, FX_DWORD nFlag) override;
|
| + FX_BOOL OnLButtonUp(const CFX_FloatPoint& point, uint32_t nFlag) override;
|
| + FX_BOOL OnChar(uint16_t nChar, uint32_t nFlag) override;
|
|
|
| void SetCheck(bool bCheck);
|
| bool IsChecked() const;
|
|
|