From: <mcu...@us...> - 2007-09-20 20:56:37
|
Revision: 1143 http://orm.svn.sourceforge.net/orm/?rev=1143&view=rev Author: mcurland Date: 2007-09-20 13:56:41 -0700 (Thu, 20 Sep 2007) Log Message: ----------- Undo part of previous checkin [1142]. This picks up role names better, the other used reference mode naming better. refs #338 Modified Paths: -------------- trunk/RelationalModel/OialDcilBridge/NameGeneration.cs Modified: trunk/RelationalModel/OialDcilBridge/NameGeneration.cs =================================================================== --- trunk/RelationalModel/OialDcilBridge/NameGeneration.cs 2007-09-20 20:55:43 UTC (rev 1142) +++ trunk/RelationalModel/OialDcilBridge/NameGeneration.cs 2007-09-20 20:56:41 UTC (rev 1143) @@ -459,7 +459,7 @@ bool hasSubtypeNode = false; FactType mainFactType = null; //find the first non subtype fact type - for (int i = pathCount - 1; i >= 0; --i) + for (int i = 0; i < pathCount; ++i) { link = path[i]; LinkedElementCollection<FactType> factTypes = ConceptTypeChildHasPathFactType.GetPathFactTypeCollection(link); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |