Merge branch 'master' of ssh://float.beyondsoft.de/git/beyondSoft/BeWo
# Conflicts: # BeWoPlanerMobil/Web.config # ReportImp/PsychosozialerTraegervereinReports/PsychosozialerTraegervereinReports.csproj
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user