Index: fpdfsdk/include/pdfwindow/PWL_SpecialButton.h |
diff --git a/fpdfsdk/include/pdfwindow/PWL_SpecialButton.h b/fpdfsdk/include/pdfwindow/PWL_SpecialButton.h |
index f6659dfb001be5e7ee56db4511ff1979b0cc8652..14e576d86894e03fe263963e4bf3433d49956007 100644 |
--- a/fpdfsdk/include/pdfwindow/PWL_SpecialButton.h |
+++ b/fpdfsdk/include/pdfwindow/PWL_SpecialButton.h |
@@ -26,14 +26,14 @@ public: |
virtual ~CPWL_CheckBox(); |
virtual CFX_ByteString GetClassName() const; |
- virtual FX_BOOL OnLButtonUp(const CPDF_Point & point, FX_DWORD nFlag); |
- virtual FX_BOOL OnChar(FX_WORD nChar, FX_DWORD nFlag); |
+ virtual bool OnLButtonUp(const CPDF_Point & point, FX_DWORD nFlag); |
+ virtual bool OnChar(FX_WORD nChar, FX_DWORD nFlag); |
- void SetCheck(FX_BOOL bCheck); |
- FX_BOOL IsChecked() const; |
+ void SetCheck(bool bCheck); |
+ bool IsChecked() const; |
private: |
- FX_BOOL m_bChecked; |
+ bool m_bChecked; |
}; |
class PWL_CLASS CPWL_RadioButton : public CPWL_Button |
@@ -43,14 +43,14 @@ public: |
virtual ~CPWL_RadioButton(); |
virtual CFX_ByteString GetClassName() const; |
- virtual FX_BOOL OnLButtonUp(const CPDF_Point & point, FX_DWORD nFlag); |
- virtual FX_BOOL OnChar(FX_WORD nChar, FX_DWORD nFlag); |
+ virtual bool OnLButtonUp(const CPDF_Point & point, FX_DWORD nFlag); |
+ virtual bool OnChar(FX_WORD nChar, FX_DWORD nFlag); |
- void SetCheck(FX_BOOL bCheck); |
- FX_BOOL IsChecked() const; |
+ void SetCheck(bool bCheck); |
+ bool IsChecked() const; |
private: |
- FX_BOOL m_bChecked; |
+ bool m_bChecked; |
}; |
#endif // FPDFSDK_INCLUDE_PDFWINDOW_PWL_SPECIALBUTTON_H_ |