Home | Info | Community | Development | myReactOS | Contact Us
false
[protected]
Definition at line 151 of file searchprogram.cpp.
Referenced by Command(), and FindProgramDlg().
{ WaitCursor wait; _thread.Stop(); TCHAR buffer[1024]; GetWindowText(GetDlgItem(_hwnd, IDC_FILTER), buffer, COUNTOF(buffer)); CharLower(buffer); _lwr_filter = buffer; HiddenWindow hide_listctrl(_list_ctrl); ListView_DeleteAllItems(_list_ctrl); if (delete_cache || !_thread._cache_valid) { _thread.free_dirs(); _thread.Start(); } else { for(FPDCache::const_iterator it=_cache.begin(); it!=_cache.end(); ++it) add_entry(*it); } }