[commit] r2356 - trunk/GME/Mga

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Tue Sep 24 15:23:56 CDT 2013


Author: ksmyth
Date: Tue Sep 24 15:23:55 2013
New Revision: 2356

Log:
Fix whitespace

Modified:
   trunk/GME/Mga/MgaProject.cpp

Modified: trunk/GME/Mga/MgaProject.cpp
==============================================================================
--- trunk/GME/Mga/MgaProject.cpp	Tue Sep 24 14:21:36 2013	(r2355)
+++ trunk/GME/Mga/MgaProject.cpp	Tue Sep 24 15:23:55 2013	(r2356)
@@ -1507,14 +1507,14 @@
 
 STDMETHODIMP CMgaProject::Notify(globalevent_enum event) {
 	COMTRY {
-		if(baseterr) COMTHROW(E_MGA_ALREADY_IN_TRANSACTION);
-		{
-			CComPtr<IMgaTerritory> t;
-			COMTHROW(CreateTerritory(NULL, &t));
-			COMTHROW(BeginTransaction(t, TRANSACTION_READ_ONLY));
-			GlobalNotify(event);
-			COMTHROW(CommitTransaction());
-		}
+		if (baseterr)
+			COMTHROW(E_MGA_ALREADY_IN_TRANSACTION);
+
+		CComPtr<IMgaTerritory> t;
+		COMTHROW(CreateTerritory(NULL, &t));
+		COMTHROW(BeginTransaction(t, TRANSACTION_READ_ONLY));
+		GlobalNotify(event);
+		COMTHROW(CommitTransaction());
     }
     COMCATCH(;);
 }


More information about the gme-commit mailing list