diff options
author | Lei Zhang <thestig@chromium.org> | 2015-06-13 00:31:30 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-06-13 00:31:30 -0700 |
commit | 4999f914be6c390bbc6d709c5b65d8955a827970 (patch) | |
tree | b98be7bda6310b5c4bd1c5de1018850b4a4a08aa /core/src/fpdftext | |
parent | 7dac05808121e6ac40a9911e71e6391c88432a62 (diff) | |
download | pdfium-4999f914be6c390bbc6d709c5b65d8955a827970.tar.xz |
Merge to XFA: Cleanup: Remove uses of "this->" in core/
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1173223002.
(cherry picked from commit 2b5e0d5b20654d116045484868c9e015ed698124)
Review URL: https://codereview.chromium.org/1186673004.
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 a9e8169b7b..d7e8263728 100644 --- a/core/src/fpdftext/fpdf_text_int.cpp +++ b/core/src/fpdftext/fpdf_text_int.cpp @@ -1279,7 +1279,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); |