diff options
author | tsepez <tsepez@chromium.org> | 2016-06-10 13:19:16 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-10 13:19:16 -0700 |
commit | c14c958db677802a52e84a0e772f6185eb89b3fd (patch) | |
tree | 8ae7568163fc0478e678f9e0721f73e29c959bc2 /xfa/fxbarcode/pdf417/BC_PDF417DetectionResultColumn.cpp | |
parent | cfb77ccb1c057d6beb73f0043e42eee8c4822f84 (diff) | |
download | pdfium-c14c958db677802a52e84a0e772f6185eb89b3fd.tar.xz |
Remove redundant casts, part 9.
Make CFDE_TxtEdtParag::m_lpData a int32_t*, not void*, since
it is cast to int32_t everywhere it is used.
Many fxbarcode casts are redundant, likely the result of
previous generic PtrArray replacement with templated type.
Review-Url: https://codereview.chromium.org/2059953002
Diffstat (limited to 'xfa/fxbarcode/pdf417/BC_PDF417DetectionResultColumn.cpp')
-rw-r--r-- | xfa/fxbarcode/pdf417/BC_PDF417DetectionResultColumn.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fxbarcode/pdf417/BC_PDF417DetectionResultColumn.cpp b/xfa/fxbarcode/pdf417/BC_PDF417DetectionResultColumn.cpp index 635dc20a6f..010b83c5fb 100644 --- a/xfa/fxbarcode/pdf417/BC_PDF417DetectionResultColumn.cpp +++ b/xfa/fxbarcode/pdf417/BC_PDF417DetectionResultColumn.cpp @@ -47,14 +47,14 @@ CBC_Codeword* CBC_DetectionResultColumn::getCodewordNearby(int32_t imageRow) { for (int32_t i = 1; i < MAX_NEARBY_DISTANCE; i++) { int32_t nearImageRow = imageRowToCodewordIndex(imageRow) - i; if (nearImageRow >= 0) { - codeword = (CBC_Codeword*)m_codewords->GetAt(nearImageRow); + codeword = m_codewords->GetAt(nearImageRow); if (codeword) { return codeword; } } nearImageRow = imageRowToCodewordIndex(imageRow) + i; if (nearImageRow < m_codewords->GetSize()) { - codeword = (CBC_Codeword*)m_codewords->GetAt(nearImageRow); + codeword = m_codewords->GetAt(nearImageRow); if (codeword) { return codeword; } @@ -74,7 +74,7 @@ void CBC_DetectionResultColumn::setCodeword(int32_t imageRow, m_codewords->SetAt(imageRowToCodewordIndex(imageRow), codeword); } CBC_Codeword* CBC_DetectionResultColumn::getCodeword(int32_t imageRow) { - return (CBC_Codeword*)m_codewords->GetAt(imageRowToCodewordIndex(imageRow)); + return m_codewords->GetAt(imageRowToCodewordIndex(imageRow)); } CBC_BoundingBox* CBC_DetectionResultColumn::getBoundingBox() { return m_boundingBox; @@ -87,7 +87,7 @@ CFX_ByteString CBC_DetectionResultColumn::toString() { CFX_ByteString result; int32_t row = 0; for (int32_t i = 0; i < m_codewords->GetSize(); i++) { - CBC_Codeword* codeword = (CBC_Codeword*)m_codewords->GetAt(i); + CBC_Codeword* codeword = m_codewords->GetAt(i); if (!codeword) { result += (FX_CHAR)row; row++; |