Fix for Bugzilla entry 904: activated the "not yet implemented" message for now, until SHFindFiles() will be implemented in shell32.dll

svn path=/trunk/; revision=18519
This commit is contained in:
Martin Fuchs 2005-10-17 13:14:04 +00:00
parent 48d2f86ba2
commit 0b5368c660

View file

@ -2052,11 +2052,13 @@ int StartMenuHandler::Command(int id, int code)
void StartMenuHandler::ShowSearchDialog()
{
#ifndef _ROS_ ///@todo to be removed when SHFindFiles() will be implemented in shell32.dll
static DynamicFct<SHFINDFILES> SHFindFiles(TEXT("SHELL32"), 90);
if (SHFindFiles)
(*SHFindFiles)(NULL, NULL);
else
#endif
MessageBox(0, TEXT("SHFindFiles() not yet implemented in SHELL32"), ResString(IDS_TITLE), MB_OK);
}