Merge branch 'master' of ssh://float.beyondsoft.de/git/beyondSoft/BeWo

# Conflicts:
#	BeWoPlanerMobil/Web.config
#	ReportImp/PsychosozialerTraegervereinReports/PsychosozialerTraegervereinReports.csproj
This commit is contained in:
Waldi
2017-07-27 11:07:10 +02:00
80 changed files with 11466 additions and 5679 deletions

View File

@@ -43,8 +43,12 @@ namespace BeWo.Controls
protected override void OnItemsSourceChanged(IEnumerable oldValue, IEnumerable newValue)
{
this.l = this.NullText; // " ... " + NullText + " ...";
IEnumerator lEnum = newValue.GetEnumerator();
if (lEnum.MoveNext() && !lEnum.Current.Equals(this.l))
IEnumerator lEnum = null;
if (newValue != null)
{
lEnum = newValue.GetEnumerator();
}
if (lEnum != null && lEnum.MoveNext() && !lEnum.Current.Equals(this.l))
{
ArrayList lTemp = new ArrayList();
lTemp.Add(this.l);