From 0b5368c660f271319610a967ab515384fe143217 Mon Sep 17 00:00:00 2001 From: Martin Fuchs Date: Mon, 17 Oct 2005 13:14:04 +0000 Subject: [PATCH] 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 --- reactos/subsys/system/explorer/taskbar/startmenu.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/subsys/system/explorer/taskbar/startmenu.cpp b/reactos/subsys/system/explorer/taskbar/startmenu.cpp index 93bad510d1b..1baee90ab01 100644 --- a/reactos/subsys/system/explorer/taskbar/startmenu.cpp +++ b/reactos/subsys/system/explorer/taskbar/startmenu.cpp @@ -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(TEXT("SHELL32"), 90); if (SHFindFiles) (*SHFindFiles)(NULL, NULL); else +#endif MessageBox(0, TEXT("SHFindFiles() not yet implemented in SHELL32"), ResString(IDS_TITLE), MB_OK); }