diff options
author | jaepark <jaepark@google.com> | 2016-07-29 18:17:44 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-07-29 18:17:45 -0700 |
commit | 9c987e9d233c855951db2611433b9cbc4f1b648f (patch) | |
tree | 81a2a615d56705ff10fd979d3b795268f241d6f7 /core/fpdfdoc/cpvt_generateap.h | |
parent | 3e454bfb00089eb022ee0b09e1631dbd61e324c4 (diff) | |
download | pdfium-9c987e9d233c855951db2611433b9cbc4f1b648f.tar.xz |
Use bool instead of FX_BOOL as return values in CPVT_GenerateAP.
Review-Url: https://codereview.chromium.org/2196903002
Diffstat (limited to 'core/fpdfdoc/cpvt_generateap.h')
-rw-r--r-- | core/fpdfdoc/cpvt_generateap.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/fpdfdoc/cpvt_generateap.h b/core/fpdfdoc/cpvt_generateap.h index fe120909da..3a984199a9 100644 --- a/core/fpdfdoc/cpvt_generateap.h +++ b/core/fpdfdoc/cpvt_generateap.h @@ -21,16 +21,16 @@ class IPVT_FontMap; struct CPVT_WordRange; -FX_BOOL FPDF_GenerateAP(CPDF_Document* pDoc, CPDF_Dictionary* pAnnotDict); +bool FPDF_GenerateAP(CPDF_Document* pDoc, CPDF_Dictionary* pAnnotDict); class CPVT_GenerateAP { public: - static FX_BOOL GenerateTextFieldAP(CPDF_Document* pDoc, - CPDF_Dictionary* pAnnotDict); - static FX_BOOL GenerateComboBoxAP(CPDF_Document* pDoc, - CPDF_Dictionary* pAnnotDict); - static FX_BOOL GenerateListBoxAP(CPDF_Document* pDoc, - CPDF_Dictionary* pAnnotDict); + static bool GenerateComboBoxAP(CPDF_Document* pDoc, + CPDF_Dictionary* pAnnotDict); + static bool GenerateListBoxAP(CPDF_Document* pDoc, + CPDF_Dictionary* pAnnotDict); + static bool GenerateTextFieldAP(CPDF_Document* pDoc, + CPDF_Dictionary* pAnnotDict); static CFX_ByteString GenerateEditAP(IPVT_FontMap* pFontMap, CPDF_VariableText::Iterator* pIterator, const CFX_FloatPoint& ptOffset, |