|
|
|
@ -3984,11 +3984,9 @@ void Finder::removeAll()
|
|
|
|
|
|
|
|
|
|
void Finder::openAll()
|
|
|
|
|
{
|
|
|
|
|
size_t sz = _pMainFoundInfos->size();
|
|
|
|
|
|
|
|
|
|
for (size_t i = 0; i < sz; ++i)
|
|
|
|
|
for (auto&& path : getResultFilePaths())
|
|
|
|
|
{
|
|
|
|
|
::SendMessage(_hParent, WM_DOOPEN, 0, reinterpret_cast<LPARAM>(_pMainFoundInfos->at(i)._fullPath.c_str()));
|
|
|
|
|
::SendMessage(_hParent, WM_DOOPEN, 0, reinterpret_cast<LPARAM>(path.c_str()));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|