Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/11/15 13:37:32 (9 years ago)
Author:
ascheibe
Message:

#2270 and #2354: merged r12173, r12458, r12077, r12599, r12613, r12112, r12116, r12117, r12131, r12631, r12672, r12684, r12690, r12692 into stable

Location:
stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Optimization

  • stable/HeuristicLab.Optimization/3.3/RunCollection.cs

    r12708 r12725  
    445445      EventHandler<EventArgs<int, int>> handler = ItemChanged;
    446446      if (handler != null) handler(this, new EventArgs<int, int>(rowIndex, columnIndex));
    447       OnToStringChanged();
    448447    }
    449448    public event EventHandler Reset;
     
    451450      EventHandler handler = Reset;
    452451      if (handler != null) handler(this, EventArgs.Empty);
    453       OnToStringChanged();
    454452    }
    455453    public event EventHandler ColumnsChanged;
     
    485483    #region Filtering
    486484    private void UpdateFiltering(bool reset) {
     485      var oldUpateRuns = UpdateOfRunsInProgress;
    487486      UpdateOfRunsInProgress = true;
    488487      if (reset)
     
    490489      foreach (IRunCollectionConstraint constraint in this.constraints)
    491490        constraint.Check();
    492       UpdateOfRunsInProgress = false;
     491      UpdateOfRunsInProgress = oldUpateRuns;
    493492    }
    494493
     
    552551    #region Modification
    553552    public void Modify() {
     553      var oldUpateRuns = UpdateOfRunsInProgress;
    554554      UpdateOfRunsInProgress = true;
    555555      var runs = this.ToList();
     
    566566        }
    567567      }
    568       UpdateOfRunsInProgress = false;
     568      UpdateOfRunsInProgress = oldUpateRuns;
    569569    }
    570570
Note: See TracChangeset for help on using the changeset viewer.