1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

notepad: Don't prompt to save empty Untitled file.

This commit is contained in:
Henry Kroll III 2010-03-06 21:05:21 -08:00 committed by Alexandre Julliard
parent e5c182f0df
commit d3369086ed

View File

@ -297,7 +297,9 @@ BOOL DoCloseFile(void)
int nResult;
static const WCHAR empty_strW[] = { 0 };
if (SendMessageW(Globals.hEdit, EM_GETMODIFY, 0, 0))
nResult=GetWindowTextLengthW(Globals.hEdit);
if (SendMessageW(Globals.hEdit, EM_GETMODIFY, 0, 0) &&
(nResult || Globals.szFileName[0]))
{
/* prompt user to save changes */
nResult = AlertFileNotSaved(Globals.szFileName);