diff options
author | Nico Weber <thakis@chromium.org> | 2015-08-04 13:00:21 -0700 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2015-08-04 13:00:21 -0700 |
commit | 9d8ec5a6e37e8d1d4d4edca9040de234e2d4728f (patch) | |
tree | c97037f398d714665aefccb6eb54d0969ad7030c /public/fpdf_searchex.h | |
parent | 780cee82236d1b3b0f9b01a22424e4b8ec9a6f12 (diff) | |
download | pdfium-9d8ec5a6e37e8d1d4d4edca9040de234e2d4728f.tar.xz |
XFA: clang-format all pdfium code.
No behavior change.
Generated by:
find . -name '*.cpp' -o -name '*.h' | \
grep -E -v 'third_party|thirdparties|lpng_v163|tiff_v403' | \
xargs ../../buildtools/mac/clang-format -i
Then manually merged https://codereview.chromium.org/1269223002/
See thread "tabs vs spaces" on pdfium@googlegroups.com for discussion.
BUG=none
Diffstat (limited to 'public/fpdf_searchex.h')
-rw-r--r-- | public/fpdf_searchex.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/public/fpdf_searchex.h b/public/fpdf_searchex.h index 1d43eab8cf..a6b6e1bdbf 100644 --- a/public/fpdf_searchex.h +++ b/public/fpdf_searchex.h @@ -16,11 +16,14 @@ extern "C" { // Function: FPDFText_GetCharIndexFromTextIndex // Get the actually char index in text_page's internal char list. // Parameters: -// text_page - Handle to a text page information structure. Returned by FPDFText_LoadPage function. -// nTextIndex - The index of the text in the string get from FPDFText_GetText. +// text_page - Handle to a text page information structure. +// Returned by FPDFText_LoadPage function. +// nTextIndex - The index of the text in the string get from +// FPDFText_GetText. // Return value: // The index of the character in internal charlist. -1 for error. -DLLEXPORT int STDCALL FPDFText_GetCharIndexFromTextIndex(FPDF_TEXTPAGE text_page, int nTextIndex); +DLLEXPORT int STDCALL +FPDFText_GetCharIndexFromTextIndex(FPDF_TEXTPAGE text_page, int nTextIndex); #ifdef __cplusplus } |