Commit 724dd10e authored by Thomas Kho's avatar Thomas Kho Committed by Alexandre Julliard

notepad: Change file not saved alert title to match Windows' notepad.exe.

parent 3ec165fd
......@@ -104,7 +104,7 @@ static int AlertFileNotSaved(LPCWSTR szFileName)
wsprintf(szMessage, szResource, szFileName[0] ? szFileName : szUntitled);
/* Load Caption */
LoadString(Globals.hInstance, STRING_ERROR, szResource, SIZEOF(szResource));
LoadString(Globals.hInstance, STRING_NOTEPAD, szResource, SIZEOF(szResource));
/* Display modal */
return MessageBox(Globals.hMainWnd, szMessage, szResource, MB_ICONEXCLAMATION|MB_YESNOCANCEL);
......
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