[commit] r2513 - trunk/GME/Gme

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Fri Jul 25 17:08:10 CDT 2014


Author: ksmyth
Date: Fri Jul 25 17:08:10 2014
New Revision: 2513

Log:
Fix 'Do you want to save?' dialog not appearing after FlushUndoQueue

Modified:
   trunk/GME/Gme/GMEApp.cpp

Modified: trunk/GME/Gme/GMEApp.cpp
==============================================================================
--- trunk/GME/Gme/GMEApp.cpp	Fri Jul 18 12:16:38 2014	(r2512)
+++ trunk/GME/Gme/GMEApp.cpp	Fri Jul 25 17:08:10 2014	(r2513)
@@ -1943,7 +1943,7 @@
 		int ret = IDNO;
 		long l;
 		COMTHROW(mgaProject->get_ProjectStatus(&l));
-		if (IsUndoPossible() && (l & PROJECT_STATUS_CHANGED))
+		if (l & PROJECT_STATUS_CHANGED)
 		{
 			CString filename;
 			CString connstr = static_cast<const wchar_t*>(mgaProject->ProjectConnStr);


More information about the gme-commit mailing list