summaryrefslogtreecommitdiff
path: root/core/fpdfapi/font/cpdf_type3char.h
diff options
context:
space:
mode:
authornpm <npm@chromium.org>2016-10-05 08:07:30 -0700
committerCommit bot <commit-bot@chromium.org>2016-10-05 08:07:30 -0700
commit7c1b07fde27dfbbf1d979d9dfd616b1a42591e5f (patch)
tree50b95879a4b6c3b4d69b7aef9fda6dc3b1041cd2 /core/fpdfapi/font/cpdf_type3char.h
parent958e57cbe864f356140b74cbc3b70bf352187bd4 (diff)
downloadpdfium-7c1b07fde27dfbbf1d979d9dfd616b1a42591e5f.tar.xz
Remove FX_BOOL from core/fpdfapi/font
FX_BOOL can be replaced by bool. Also replaced in a couple other places so that Winbots pass. Review-Url: https://codereview.chromium.org/2395803002
Diffstat (limited to 'core/fpdfapi/font/cpdf_type3char.h')
-rw-r--r--core/fpdfapi/font/cpdf_type3char.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fpdfapi/font/cpdf_type3char.h b/core/fpdfapi/font/cpdf_type3char.h
index ebb5ed440c..549f49e3da 100644
--- a/core/fpdfapi/font/cpdf_type3char.h
+++ b/core/fpdfapi/font/cpdf_type3char.h
@@ -22,11 +22,11 @@ class CPDF_Type3Char {
explicit CPDF_Type3Char(CPDF_Form* pForm);
~CPDF_Type3Char();
- FX_BOOL LoadBitmap(CPDF_RenderContext* pContext);
+ bool LoadBitmap(CPDF_RenderContext* pContext);
std::unique_ptr<CPDF_Form> m_pForm;
std::unique_ptr<CFX_DIBitmap> m_pBitmap;
- FX_BOOL m_bColored;
+ bool m_bColored;
int m_Width;
CFX_Matrix m_ImageMatrix;
FX_RECT m_BBox;