mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-11 21:03:05 +08:00
+ upd: current grepWin development
This commit is contained in:
parent
19d8899fc7
commit
18fe797ca5
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
@ -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"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user