Commit 96188183 authored by Mikołaj Zalewski's avatar Mikołaj Zalewski Committed by Alexandre Julliard

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

parent 083bb7e9
......@@ -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));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment