Renamed “Bullet” associated with format flag to “BulletOnContinuous”

This commit is contained in:
John Jenko 2013-04-18 15:55:10 +00:00
parent 0fff0b09a8
commit e8a518fdf9

View File

@ -3961,12 +3961,12 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _NumberSubs, "@NumberSubs"); return LazyLoad(ref _NumberSubs, "@NumberSubs");
} }
} }
private LazyLoad<bool> _Bullet; private LazyLoad<bool> _BulletOnContinuous;
public bool Bullet public bool BulletOnContinuous
{ {
get get
{ {
return LazyLoad(ref _Bullet, "@Bullet"); return LazyLoad(ref _BulletOnContinuous, "@BulletOnContinuous");
} }
} }
private LazyLoad<bool> _StepNumberForHighLevel; private LazyLoad<bool> _StepNumberForHighLevel;