BGE: Change Id dialogue at program startup

BGE: Support for Change Id in step config
BGE: change property name from MultipleChangeIds to ChangeIds
This commit is contained in:
2014-05-07 13:38:26 +00:00
parent c157cacd50
commit 9efa23fffc
5 changed files with 260 additions and 9 deletions

View File

@@ -1564,12 +1564,12 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _ChgBarMessageFromEdit, "@ChgBarMessageFromEdit");
}
}
private LazyLoad<bool> _MultipleChangeIds;
public bool MultipleChangeIds
private LazyLoad<bool> _ChangeIds;
public bool ChangeIds
{
get
{
return LazyLoad(ref _MultipleChangeIds, "@MultipleChangeIds");
return LazyLoad(ref _ChangeIds, "@ChangeIds");
}
}
private LazyLoad<bool> _ChangeBarToRNOSep;