Win32 - MemWatch - more save changes fixes

This commit is contained in:
adelikat 2009-02-25 19:11:51 +00:00
parent f26e54b4a9
commit 08d860fafa
1 changed files with 5 additions and 1 deletions

View File

@ -659,6 +659,7 @@ bool CloseMemoryWatch()
return false; //User requested cancel, so abort the attempt to close return false; //User requested cancel, so abort the attempt to close
} }
} }
return true;
} }
//New File //New File
@ -667,7 +668,10 @@ void ClearAllText()
//Ask to save changes first, if necessary //Ask to save changes first, if necessary
if (fileChanged==true) //If contents have changed if (fileChanged==true) //If contents have changed
{ {
if(MessageBox(hwndMemWatch, "Save Changes?", "Save", MB_YESNO)==IDYES) int result = MessageBox(hwndMemWatch, "Save Changes?", "Save", MB_YESNOCANCEL);
if(result==IDCANCEL)
return;
else if (result == IDYES)
SaveMemWatch(); SaveMemWatch();
} }
//Clear all strings //Clear all strings