summaryrefslogtreecommitdiff
path: root/xfa/fde/cfde_texteditengine.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-09-19 11:11:00 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-09-19 15:23:03 +0000
commitd13f24c08debb293e794ba5a66dd449adf4bc2c8 (patch)
treea50b33ece47e231d155ac82e2b3cb25f8e242fec /xfa/fde/cfde_texteditengine.h
parent0264e97bceaca69d0b0232ac680bd7b26e2db66a (diff)
downloadpdfium-d13f24c08debb293e794ba5a66dd449adf4bc2c8.tar.xz
Invert flag to CFDE_TextEditEngine::Iterator::IsEOF
This CL changes the IsEOF flag to match the semantics of the FindNextBreakPos flag. Change-Id: I1a8aba91171baeacf80bdea4b9468d6093599c90 Reviewed-on: https://pdfium-review.googlesource.com/14291 Reviewed-by: Henrique Nakashima <hnakashima@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fde/cfde_texteditengine.h')
-rw-r--r--xfa/fde/cfde_texteditengine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fde/cfde_texteditengine.h b/xfa/fde/cfde_texteditengine.h
index 40f12e5f76..fc5a5fb490 100644
--- a/xfa/fde/cfde_texteditengine.h
+++ b/xfa/fde/cfde_texteditengine.h
@@ -47,7 +47,7 @@ class CFDE_TextEditEngine {
void SetAt(int32_t nIndex);
int32_t GetAt() const;
void FindNextBreakPos(bool bPrev);
- bool IsEOF(bool bTail) const;
+ bool IsEOF(bool bPrev) const;
private:
CFX_UnownedPtr<const CFDE_TextEditEngine> engine_;