diff options
author | Lei Zhang <thestig@chromium.org> | 2015-06-10 23:33:26 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-06-10 23:33:26 -0700 |
commit | 2b5e0d5b20654d116045484868c9e015ed698124 (patch) | |
tree | e458d5b729c992d58072d19422f7c83b3973d54b /core/src/fpdftext | |
parent | f726c92cb2cf5739fd5b21e825e5bf510040c62f (diff) | |
download | pdfium-2b5e0d5b20654d116045484868c9e015ed698124.tar.xz |
Cleanup: Remove uses of "this->" in core/
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1173223002.
Diffstat (limited to 'core/src/fpdftext')
-rw-r--r-- | core/src/fpdftext/fpdf_text_int.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/fpdftext/fpdf_text_int.cpp b/core/src/fpdftext/fpdf_text_int.cpp index 16421ed5b6..b100394a8f 100644 --- a/core/src/fpdftext/fpdf_text_int.cpp +++ b/core/src/fpdftext/fpdf_text_int.cpp @@ -1276,7 +1276,7 @@ void CPDF_TextPage::CloseTempLine() if(nR2L > 0 && nR2L >= nL2R) { bR2L = TRUE; } - if(this->m_parserflag == FPDFTEXT_RLTB || bR2L) { + if (m_parserflag == FPDFTEXT_RLTB || bR2L) { int count = order.GetSize(); for(int i = count - 1; i > 0; i -= 3) { int ret = order.GetAt(i); |