diff options
author | tsepez <tsepez@chromium.org> | 2016-10-27 15:09:39 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-27 15:09:39 -0700 |
commit | 169e0ae9da6e87e89417ff9f3e4f637979f4c986 (patch) | |
tree | 6139459cbc382a5b20c824cad63275b420f2223e /core/fxcodec/jbig2/JBig2_GrdProc.h | |
parent | 478ed62770e0dc0fe2d859e73496fa8c7f854694 (diff) | |
download | pdfium-169e0ae9da6e87e89417ff9f3e4f637979f4c986.tar.xz |
Fix FX_BOOL / int noise in JBig2_Grd*Proc
Replace most of these with ints since the are used in integer
operations. If it walks like a duck, and quacks like a duck
... despite what the hungarian notation might say.
Review-Url: https://codereview.chromium.org/2455523005
Diffstat (limited to 'core/fxcodec/jbig2/JBig2_GrdProc.h')
-rw-r--r-- | core/fxcodec/jbig2/JBig2_GrdProc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcodec/jbig2/JBig2_GrdProc.h b/core/fxcodec/jbig2/JBig2_GrdProc.h index f087afffef..3b334b113c 100644 --- a/core/fxcodec/jbig2/JBig2_GrdProc.h +++ b/core/fxcodec/jbig2/JBig2_GrdProc.h @@ -117,7 +117,7 @@ class CJBig2_GRDProc { CJBig2_ArithDecoder* m_pArithDecoder; JBig2ArithCtx* m_gbContext; uint16_t m_DecodeType; - FX_BOOL m_LTP; + int m_LTP; FX_RECT m_ReplaceRect; }; |