diff options
author | tsepez <tsepez@chromium.org> | 2016-10-26 15:33:58 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-26 15:33:58 -0700 |
commit | f39074c0ae47a84c496782f8b75bcce1e1cfdf59 (patch) | |
tree | 077b7f12bff3c4aa4d53c6b74fa32e613cc73a27 /xfa/fxfa/xfa_ffapp.h | |
parent | e5cb0b191aed020da99757c117dae014ea65c6ba (diff) | |
download | pdfium-f39074c0ae47a84c496782f8b75bcce1e1cfdf59.tar.xz |
Fix some FX_BOOL / int noise in fxcrt.chromium/2902
Review-Url: https://codereview.chromium.org/2450183003
Diffstat (limited to 'xfa/fxfa/xfa_ffapp.h')
-rw-r--r-- | xfa/fxfa/xfa_ffapp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/xfa_ffapp.h b/xfa/fxfa/xfa_ffapp.h index 5e8289538b..543d78c2ee 100644 --- a/xfa/fxfa/xfa_ffapp.h +++ b/xfa/fxfa/xfa_ffapp.h @@ -31,7 +31,7 @@ class CXFA_FileRead : public IFX_SeekableReadStream { // IFX_SeekableReadStream FX_FILESIZE GetSize() override; - FX_BOOL ReadBlock(void* buffer, FX_FILESIZE offset, size_t size) override; + bool ReadBlock(void* buffer, FX_FILESIZE offset, size_t size) override; void Release() override; protected: |