diff options
Diffstat (limited to 'fxjs/cjs_document.cpp')
-rw-r--r-- | fxjs/cjs_document.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fxjs/cjs_document.cpp b/fxjs/cjs_document.cpp index 862055a7ff..4885d68e1b 100644 --- a/fxjs/cjs_document.cpp +++ b/fxjs/cjs_document.cpp @@ -1264,10 +1264,8 @@ CJS_Return Document::getPageNthWord( } } - if (bStrip) { - swRet.TrimLeft(); - swRet.TrimRight(); - } + if (bStrip) + swRet.Trim(); return CJS_Return(pRuntime->NewString(swRet.c_str())); } |