diff --git a/PowerEditor/src/MISC/Common/Common.cpp b/PowerEditor/src/MISC/Common/Common.cpp index 25bd616c8..11db3f3be 100644 --- a/PowerEditor/src/MISC/Common/Common.cpp +++ b/PowerEditor/src/MISC/Common/Common.cpp @@ -707,3 +707,13 @@ generic_string stringToUpper(generic_string strToConvert) return strToConvert; } +generic_string stringReplace(generic_string subject, const generic_string& search, const generic_string& replace) +{ + size_t pos = 0; + while ((pos = subject.find(search, pos)) != std::string::npos) + { + subject.replace(pos, search.length(), replace); + pos += replace.length(); + } + return subject; +} \ No newline at end of file diff --git a/PowerEditor/src/MISC/Common/Common.h b/PowerEditor/src/MISC/Common/Common.h index 5d91111c2..5164c9524 100644 --- a/PowerEditor/src/MISC/Common/Common.h +++ b/PowerEditor/src/MISC/Common/Common.h @@ -187,5 +187,6 @@ generic_string PathRemoveFileSpec(generic_string & path); generic_string PathAppend(generic_string &strDest, const generic_string & str2append); COLORREF getCtrlBgColor(HWND hWnd); generic_string stringToUpper(generic_string strToConvert); +generic_string stringReplace(generic_string subject, const generic_string& search, const generic_string& replace); #endif //M30_IDE_COMMUN_H diff --git a/PowerEditor/src/ScitillaComponent/FindReplaceDlg.cpp b/PowerEditor/src/ScitillaComponent/FindReplaceDlg.cpp index 02bce652e..63f861346 100644 --- a/PowerEditor/src/ScitillaComponent/FindReplaceDlg.cpp +++ b/PowerEditor/src/ScitillaComponent/FindReplaceDlg.cpp @@ -1275,7 +1275,7 @@ bool FindReplaceDlg::processFindNext(const TCHAR *txt2find, const FindOption *op if (NotIncremental == pOptions->_incrementalType) //incremental search doesnt trigger messages { generic_string msg = TEXT("Find: Can't find the text \""); - msg += txt2find; + msg += stringReplace(txt2find, TEXT("&"), TEXT("&&")); msg += TEXT("\""); setStatusbarMessage(msg, FSNotFound);