| Index: fpdfsdk/cpdfsdk_annot.h
|
| diff --git a/fpdfsdk/cpdfsdk_annot.h b/fpdfsdk/cpdfsdk_annot.h
|
| index 874da2d5dcc51efce763c8b6d1410a80a56a63da..36e7b56612ac9c3e42b2d705c386b6792590a11b 100644
|
| --- a/fpdfsdk/cpdfsdk_annot.h
|
| +++ b/fpdfsdk/cpdfsdk_annot.h
|
| @@ -28,7 +28,7 @@ class CPDFSDK_Annot : public CFX_Observable<CPDFSDK_Annot> {
|
| virtual ~CPDFSDK_Annot();
|
|
|
| #ifdef PDF_ENABLE_XFA
|
| - virtual FX_BOOL IsXFAField();
|
| + virtual bool IsXFAField();
|
| virtual CXFA_FFWidget* GetXFAWidget() const;
|
| #endif // PDF_ENABLE_XFA
|
|
|
| @@ -54,12 +54,12 @@ class CPDFSDK_Annot : public CFX_Observable<CPDFSDK_Annot> {
|
| void SetPage(CPDFSDK_PageView* pPageView);
|
| CPDFSDK_PageView* GetPageView() const { return m_pPageView; }
|
|
|
| - FX_BOOL IsSelected();
|
| - void SetSelected(FX_BOOL bSelected);
|
| + bool IsSelected();
|
| + void SetSelected(bool bSelected);
|
|
|
| protected:
|
| CPDFSDK_PageView* m_pPageView;
|
| - FX_BOOL m_bSelected;
|
| + bool m_bSelected;
|
| };
|
|
|
| #endif // FPDFSDK_CPDFSDK_ANNOT_H_
|
|
|