diff options
author | npm <npm@chromium.org> | 2016-10-05 08:07:30 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-05 08:07:30 -0700 |
commit | 7c1b07fde27dfbbf1d979d9dfd616b1a42591e5f (patch) | |
tree | 50b95879a4b6c3b4d69b7aef9fda6dc3b1041cd2 /core/fpdfapi/font/ttgsubtable.h | |
parent | 958e57cbe864f356140b74cbc3b70bf352187bd4 (diff) | |
download | pdfium-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/ttgsubtable.h')
-rw-r--r-- | core/fpdfapi/font/ttgsubtable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fpdfapi/font/ttgsubtable.h b/core/fpdfapi/font/ttgsubtable.h index b3853912b2..e0e4bbbd05 100644 --- a/core/fpdfapi/font/ttgsubtable.h +++ b/core/fpdfapi/font/ttgsubtable.h @@ -22,7 +22,7 @@ class CFX_GlyphMap { ~CFX_GlyphMap(); void SetAt(int key, int value); - FX_BOOL Lookup(int key, int& value); + bool Lookup(int key, int& value); protected: CFX_BinaryBuf m_Buffer; @@ -290,7 +290,7 @@ class CFX_CTTGSUBTable { uint32_t GetUInt32(FT_Bytes& p) const; std::map<uint32_t, uint32_t> m_featureMap; - FX_BOOL m_bFeautureMapLoad; + bool m_bFeautureMapLoad; bool loaded; tt_gsub_header header; TScriptList ScriptList; |