Upped revision number to 1.8

C2020-033: 2021 UPGRADE Handling of incoming transitions on delete or review
This commit is contained in:
2021-01-06 15:07:57 +00:00
parent ba2e72baeb
commit fdd59a5d6b
18 changed files with 1564 additions and 1005 deletions

View File

@@ -5431,7 +5431,7 @@ namespace VEPROMS.CSLA.Library
}
}
#endregion
// C2020-018 used for a more descriptive warning message when deleting Procedures, Sections, Steps that have external transitions pointing to them
// C2020-018 used for a more descriptive warning message when deleting Procedures, Sections, Steps that have incoming transitions pointing to them
public string GetTypeDescription()
{
if (this != null)
@@ -5535,7 +5535,7 @@ namespace VEPROMS.CSLA.Library
// itemInfo.ToXml(xn);
// }
//}
internal ItemInfoList(ItemInfo itemInfo)
public ItemInfoList(ItemInfo itemInfo)
{
AddItem(itemInfo);
}
@@ -5928,7 +5928,7 @@ namespace VEPROMS.CSLA.Library
}
this.RaiseListChangedEvents = true;
}
internal void AddItem(ItemInfo itemInfo)
public void AddItem(ItemInfo itemInfo)
{
IsReadOnly = false;
this.Add(itemInfo);