summaryrefslogtreecommitdiff
path: root/fpdfsdk/fpdf_searchex.cpp
diff options
context:
space:
mode:
authorNicolas Pena <npm@chromium.org>2017-03-10 11:59:17 -0500
committerChromium commit bot <commit-bot@chromium.org>2017-03-10 19:04:24 +0000
commit5c1961dfa0b1828eb2db38dc637548584c5cc704 (patch)
tree3346f34e13738c2b997e46428e255c3ded0f0ebc /fpdfsdk/fpdf_searchex.cpp
parent52c73c24ab053e839182d3cdac6cbb758ce3a196 (diff)
downloadpdfium-5c1961dfa0b1828eb2db38dc637548584c5cc704.tar.xz
Add public method FPDFText_GetTextIndexFromCharIndex
BUG=pdfium:676 Change-Id: I46de35a86769dc2f7f73ac3552306356ca3289a5 Reviewed-on: https://pdfium-review.googlesource.com/2955 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: Nicolás Peña <npm@chromium.org>
Diffstat (limited to 'fpdfsdk/fpdf_searchex.cpp')
-rw-r--r--fpdfsdk/fpdf_searchex.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/fpdfsdk/fpdf_searchex.cpp b/fpdfsdk/fpdf_searchex.cpp
index f82db37b5a..13729167ed 100644
--- a/fpdfsdk/fpdf_searchex.cpp
+++ b/fpdfsdk/fpdf_searchex.cpp
@@ -15,3 +15,11 @@ FPDFText_GetCharIndexFromTextIndex(FPDF_TEXTPAGE text_page, int nTextIndex) {
return static_cast<CPDF_TextPage*>(text_page)
->CharIndexFromTextIndex(nTextIndex);
}
+
+DLLEXPORT int STDCALL
+FPDFText_GetTextIndexFromCharIndex(FPDF_TEXTPAGE text_page, int nCharIndex) {
+ if (!text_page)
+ return -1;
+ return static_cast<CPDF_TextPage*>(text_page)->TextIndexFromCharIndex(
+ nCharIndex);
+}