Cleanup after comments in pull review.
This commit is contained in:
parent
5bacca3601
commit
930464fb8c
|
@ -707,3 +707,13 @@ generic_string stringToUpper(generic_string strToConvert)
|
||||||
return 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;
|
||||||
|
}
|
|
@ -187,5 +187,6 @@ generic_string PathRemoveFileSpec(generic_string & path);
|
||||||
generic_string PathAppend(generic_string &strDest, const generic_string & str2append);
|
generic_string PathAppend(generic_string &strDest, const generic_string & str2append);
|
||||||
COLORREF getCtrlBgColor(HWND hWnd);
|
COLORREF getCtrlBgColor(HWND hWnd);
|
||||||
generic_string stringToUpper(generic_string strToConvert);
|
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
|
#endif //M30_IDE_COMMUN_H
|
||||||
|
|
|
@ -1146,18 +1146,6 @@ BOOL CALLBACK FindReplaceDlg::run_dlgProc(UINT message, WPARAM wParam, LPARAM lP
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
generic_string replaceString(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;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// return value :
|
// return value :
|
||||||
// true : the text2find is found
|
// true : the text2find is found
|
||||||
// false : the text2find is not found
|
// false : the text2find is not found
|
||||||
|
@ -1287,8 +1275,7 @@ bool FindReplaceDlg::processFindNext(const TCHAR *txt2find, const FindOption *op
|
||||||
if (NotIncremental == pOptions->_incrementalType) //incremental search doesnt trigger messages
|
if (NotIncremental == pOptions->_incrementalType) //incremental search doesnt trigger messages
|
||||||
{
|
{
|
||||||
generic_string msg = TEXT("Find: Can't find the text \"");
|
generic_string msg = TEXT("Find: Can't find the text \"");
|
||||||
generic_string txt2find_escaped = replaceString(txt2find, TEXT("&"), TEXT("&&"));
|
msg += stringReplace(txt2find, TEXT("&"), TEXT("&&"));
|
||||||
msg += txt2find_escaped;
|
|
||||||
msg += TEXT("\"");
|
msg += TEXT("\"");
|
||||||
setStatusbarMessage(msg, FSNotFound);
|
setStatusbarMessage(msg, FSNotFound);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue