diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-04-12 15:31:05 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-12 20:14:48 +0000 |
commit | f6baf6b1d101a889d2cfc7cb925e726dbffb89db (patch) | |
tree | 6e174dc5228f3e4ea63bf5e0d4950517234278fd /xfa/fde/cfde_txtedtengine.cpp | |
parent | 81513c8243390783540b8bb6d0f9b26d9cb0c2c1 (diff) | |
download | pdfium-f6baf6b1d101a889d2cfc7cb925e726dbffb89db.tar.xz |
Fold CFGAS_Stream into CFGAS_TextStream.
Every CFGAS_Stream is wrapped inside a CFGAS_TextStream. This CL folds
the two classes together and merges the methods where needed.
Change-Id: Ic56449b36baa51254d8d600ce631f285ba2cbb80
Reviewed-on: https://pdfium-review.googlesource.com/4057
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Nicolás Peña <npm@chromium.org>
Diffstat (limited to 'xfa/fde/cfde_txtedtengine.cpp')
-rw-r--r-- | xfa/fde/cfde_txtedtengine.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xfa/fde/cfde_txtedtengine.cpp b/xfa/fde/cfde_txtedtengine.cpp index 633e0bc68e..b6471766db 100644 --- a/xfa/fde/cfde_txtedtengine.cpp +++ b/xfa/fde/cfde_txtedtengine.cpp @@ -117,8 +117,7 @@ void CFDE_TxtEdtEngine::SetTextByStream( } bool bPreIsCR = false; if (bValid) { - uint8_t bom[4]; - int32_t nPos = pStream->GetBOM(bom); + int32_t nPos = pStream->GetBOMLength(); pStream->Seek(FX_STREAMSEEK_Begin, nPos); int32_t nPlateSize = std::min(nStreamLength, m_pTxtBuf->GetChunkSize()); wchar_t* lpwstr = FX_Alloc(wchar_t, nPlateSize); |