From 961881836e04d47e7d7cbfee2041f36ed608e057 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Miko=C5=82aj=20Zalewski?= Date: Thu, 17 Aug 2006 18:22:27 +0200 Subject: [PATCH] shell32: Use Yes/No instead of OK/Cancel in confirm dialogs. --- dlls/shell32/shlfileop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/shlfileop.c b/dlls/shell32/shlfileop.c index e05b2fa181b..fccc2ace390 100644 --- a/dlls/shell32/shlfileop.c +++ b/dlls/shell32/shlfileop.c @@ -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(¶ms)); } -- 2.11.4.GIT