+ upd: current grepWin development

This commit is contained in:
RaiKoHoff 2020-07-24 10:32:26 +02:00
parent 19d8899fc7
commit 18fe797ca5
2 changed files with 8 additions and 8 deletions

View File

@ -3362,10 +3362,10 @@ int CSearchDlg::SearchFile(std::shared_ptr<CSearchInfo> sinfoPtr, const std::wst
if (searchFlags.bCaptureSearch)
{
auto out = whatc.format(replaceString, flags);
sinfoPtr->matchlines.push_back(out);
sinfoPtr->matchlines.push_back(std::move(out));
}
else
sinfoPtr->matchlines.push_back(sLine.substr(0, 1024));
sinfoPtr->matchlines.push_back(std::move(sLine));
sinfoPtr->matchlinesnumbers.push_back(l);
}
}

View File

@ -6,13 +6,13 @@
//#pragma message(__LOC__"Run the NAnt script to get proper version info")
#define FILEVER 2, 1, 3, 20
#define PRODUCTVER 2, 1, 3, 20
#define STRFILEVER "2.1.3.20\0"
#define STRPRODUCTVER "2.1.3.20\0"
#define FILEVER 2, 1, 3, 21
#define PRODUCTVER 2, 1, 3, 21
#define STRFILEVER "2.1.3.21\0"
#define STRPRODUCTVER "2.1.3.21\0"
#define GREPWIN_VERMAJOR 2
#define GREPWIN_VERMINOR 1
#define GREPWIN_VERMICRO 3
#define GREPWIN_VERBUILD 20
#define GREPWIN_VERDATE "2020-07-21"
#define GREPWIN_VERBUILD 21
#define GREPWIN_VERDATE "2020-07-24"