[commit] r2376 - trunk/GME/Mga

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Tue Oct 1 14:14:15 CDT 2013


Author: ksmyth
Date: Tue Oct  1 14:14:15 2013
New Revision: 2376

Log:
Revert "Ignore high bits (isinstance) in get_ChildObjectByRelID"

This reverts commit 932809708e314c2878afde2a5c142def6073c0c0.

Modified:
   trunk/GME/Mga/MgaFolder.cpp

Modified: trunk/GME/Mga/MgaFolder.cpp
==============================================================================
--- trunk/GME/Mga/MgaFolder.cpp	Tue Oct  1 14:14:06 2013	(r2375)
+++ trunk/GME/Mga/MgaFolder.cpp	Tue Oct  1 14:14:15 2013	(r2376)
@@ -505,7 +505,7 @@
 
 		CoreObjs children = self[ATTRID_FCOPARENT+ATTRID_COLLECTION];
 		ITERATE_THROUGH(children) {
-			if ((ITER[ATTRID_RELID] & RELID_BASE_MAX) == (relid & RELID_BASE_MAX)) {
+			if(ITER[ATTRID_RELID] == relid) {
 		      ObjForCore(ITER)->getinterface(pVal);
 			  break;
 			}


More information about the gme-commit mailing list