| Index: core/src/fpdftext/fpdf_text_int.cpp
|
| diff --git a/core/src/fpdftext/fpdf_text_int.cpp b/core/src/fpdftext/fpdf_text_int.cpp
|
| index 5ed0e01ab9b592fb04b309288ad214cf83e8a6d3..54dc915e56bf6ef533c615071ed5af84eb436a3e 100644
|
| --- a/core/src/fpdftext/fpdf_text_int.cpp
|
| +++ b/core/src/fpdftext/fpdf_text_int.cpp
|
| @@ -2372,7 +2372,7 @@ FX_BOOL CPDF_TextPageFind::FindNext()
|
| continue;
|
| }
|
| int endIndex;
|
| - nResultPos = m_strText.Find(csWord, nStartPos);
|
| + nResultPos = m_strText.Find(csWord.c_str(), nStartPos);
|
| if (nResultPos == -1) {
|
| m_IsFind = FALSE;
|
| return m_IsFind;
|
| @@ -2489,7 +2489,7 @@ void CPDF_TextPageFind::ExtractFindWhat(const CFX_WideString& findwhat)
|
| int index = 0;
|
| while(1) {
|
| CFX_WideString csWord = TEXT_EMPTY;
|
| - int ret = ExtractSubString(csWord, findwhat, index, TEXT_BLANK_CHAR);
|
| + int ret = ExtractSubString(csWord, findwhat.c_str(), index, TEXT_BLANK_CHAR);
|
| if(csWord.IsEmpty()) {
|
| if(ret) {
|
| m_csFindWhatArray.Add(CFX_WideString(L""));
|
|
|