diff --git a/dlls/shell32/dialogs.c b/dlls/shell32/dialogs.c index d57c4778b23..7b1ea61014b 100644 --- a/dlls/shell32/dialogs.c +++ b/dlls/shell32/dialogs.c @@ -56,7 +56,7 @@ void WINAPI RunFileDlg( void WINAPI ExitWindowsDialog (HWND hWndOwner) { TRACE("(0x%08x)\n", hWndOwner); - if (MessageBoxA( hWndOwner, "Do you want to exit WINE?", "Shutdown", MB_YESNO|MB_ICONQUESTION) == IDOK) + if (MessageBoxA( hWndOwner, "Do you want to exit WINE?", "Shutdown", MB_YESNO|MB_ICONQUESTION) == IDYES) { SendMessageA ( hWndOwner, WM_QUIT, 0, 0); } diff --git a/programs/notepad/dialog.c b/programs/notepad/dialog.c index 4d32a795e49..ab3c22174b2 100644 --- a/programs/notepad/dialog.c +++ b/programs/notepad/dialog.c @@ -76,7 +76,7 @@ int AlertFileNotSaved(LPSTR szFileName) { LoadString(Globals.hInstance, IDS_ERROR, szRessource, sizeof(szRessource)); /* Display modal */ - nResult = MessageBox(Globals.hMainWnd, szMessage, szRessource, MB_ICONEXCLAMATION + MB_YESNOCANCEL); + nResult = MessageBox(Globals.hMainWnd, szMessage, szRessource, MB_ICONEXCLAMATION|MB_YESNOCANCEL); return(nResult); }