Fix for Bugzilla entry 904: activated the "not yet implemented" message for now, until SHFindFiles() will be implemented in shell32.dll
Modified: trunk/reactos/subsys/system/explorer/taskbar/startmenu.cpp

Modified: trunk/reactos/subsys/system/explorer/taskbar/startmenu.cpp
--- trunk/reactos/subsys/system/explorer/taskbar/startmenu.cpp	2005-10-17 12:58:07 UTC (rev 18518)
+++ trunk/reactos/subsys/system/explorer/taskbar/startmenu.cpp	2005-10-17 13:14:04 UTC (rev 18519)
@@ -2052,11 +2052,13 @@
 
 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);
 }