diff options
author | Lei Zhang <thestig@chromium.org> | 2016-02-23 11:21:48 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2016-02-23 11:21:48 -0800 |
commit | 9976672977d39fc5fe9df2b0110ed977d79609a8 (patch) | |
tree | 192a3238fa9587c77843812dc90f1884dc506689 /xfa/src/fxbarcode | |
parent | d21cddaa7548584bfcebefe9a03e857fee3a846b (diff) | |
download | pdfium-9976672977d39fc5fe9df2b0110ed977d79609a8.tar.xz |
Remove uses of this->foo.
R=weili@chromium.org
Review URL: https://codereview.chromium.org/1722913002 .
Diffstat (limited to 'xfa/src/fxbarcode')
-rw-r--r-- | xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.cpp b/xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.cpp index f99cac81f5..cbcc13e369 100644 --- a/xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.cpp +++ b/xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.cpp @@ -106,7 +106,7 @@ CBC_ReedSolomonGF256Poly* CBC_ReedSolomonGF256Poly::AddOrSubtract( BC_EXCEPTION_CHECK_ReturnValue(e, NULL); } if (other->IsZero()) { - return this->Clone(e); + return Clone(e); BC_EXCEPTION_CHECK_ReturnValue(e, NULL); } CFX_Int32Array smallerCoefficients; @@ -172,7 +172,7 @@ CBC_ReedSolomonGF256Poly* CBC_ReedSolomonGF256Poly::Multiply(int32_t scalar, return temp; } if (scalar == 1) { - return this->Clone(e); + return Clone(e); BC_EXCEPTION_CHECK_ReturnValue(e, NULL); } int32_t size = m_coefficients.GetSize(); @@ -219,7 +219,7 @@ CFX_PtrArray* CBC_ReedSolomonGF256Poly::Divide(CBC_ReedSolomonGF256Poly* other, CBC_ReedSolomonGF256Poly* rsg1 = m_field->GetZero()->Clone(e); BC_EXCEPTION_CHECK_ReturnValue(e, NULL); CBC_AutoPtr<CBC_ReedSolomonGF256Poly> quotient(rsg1); - CBC_ReedSolomonGF256Poly* rsg2 = this->Clone(e); + CBC_ReedSolomonGF256Poly* rsg2 = Clone(e); BC_EXCEPTION_CHECK_ReturnValue(e, NULL); CBC_AutoPtr<CBC_ReedSolomonGF256Poly> remainder(rsg2); int32_t denominatorLeadingTerm = other->GetCoefficients(other->GetDegree()); |