shell32: Use Yes/No instead of OK/Cancel in confirm dialogs.

This commit is contained in:
Mikołaj Zalewski 2006-08-17 18:22:27 +02:00 committed by Alexandre Julliard
parent 083bb7e9d1
commit 961881836e
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ BOOL SHELL_ConfirmDialogW(HWND hWnd, int nKindOfDialog, LPCWSTR szDir)
params.lpszText = szBuffer;
params.lpszCaption = szCaption;
params.lpszIcon = (LPWSTR)MAKEINTRESOURCE(ids.icon_resource_id);
params.dwStyle = MB_OKCANCEL | MB_USERICON;
params.dwStyle = MB_YESNO | MB_USERICON;
return (IDOK == MessageBoxIndirectW(&params));
}