This commit is contained in:
2009-12-04 14:16:40 +00:00
parent b8344c8ca1
commit ecff8237a2
3 changed files with 31 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ namespace VEPROMS.CSLA.Library
case "ReferencedObject":
_MyParsedLinkType = ParsedLinkType.ReferencedObject;
string[] subs = m.Groups[3].Value.Split(" ".ToCharArray());
if (subs[0] == "<NewID>")
if (subs[0].IndexOf("CROUSGID")>-1)
_MyRoUsageInfo = null;
else
{
@@ -37,7 +37,8 @@ namespace VEPROMS.CSLA.Library
case "Transition":
case "TransitionRange":
_MyParsedLinkType = (ParsedLinkType)Enum.Parse(_MyParsedLinkType.GetType(), m.Groups[2].Value);
if (m.Groups[3].Value.Split(" ".ToCharArray())[1] == "<NewID>")
string[] subst = m.Groups[3].Value.Split(" ".ToCharArray());
if (subst[0].IndexOf("CTID") > -1)
_MyTransitionInfo = null;
else
{