mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
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:
parent
48d2f86ba2
commit
0b5368c660
1 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue