Do search for address in all possible modes.

This commit is contained in:
vng 2012-12-18 12:55:39 +03:00 committed by Alex Zolotarev
parent 1e6f2bc481
commit b98523245f

View file

@ -277,7 +277,11 @@ void Engine::SearchAsync()
}
}
else
m_pQuery->Search(res, params.NeedSearch(SearchParams::SEARCH_ADDRESS));
{
// Do search for address in all modes.
// params.NeedSearch(SearchParams::SEARCH_ADDRESS)
m_pQuery->Search(res, true);
}
}
catch (Query::CancelException const &)
{