Thomas Kho : notepad: Change file not saved alert title to match Windows' notepad.exe.
Module: wine Branch: refs/heads/master Commit: 724dd10ee80fe8b909c914dca07be13dacf251e0 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=724dd10ee80fe8b909c914dc... Author: Thomas Kho <tkho(a)ucla.edu> Date: Wed Jul 12 14:15:42 2006 -0700 notepad: Change file not saved alert title to match Windows' notepad.exe. --- programs/notepad/dialog.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/programs/notepad/dialog.c b/programs/notepad/dialog.c index 1488af0..4125326 100644 --- a/programs/notepad/dialog.c +++ b/programs/notepad/dialog.c @@ -104,7 +104,7 @@ static int AlertFileNotSaved(LPCWSTR szF 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);
participants (1)
-
Alexandre Julliard