Changeset 13198
- Timestamp:
- 11/16/15 21:38:15 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization/3.3/RunCollection.cs
r13181 r13198 537 537 IRunCollectionConstraint constraint = (IRunCollectionConstraint)sender; 538 538 if (constraint.Active) { 539 var oldUp ateRuns = UpdateOfRunsInProgress;539 var oldUpdateRuns = UpdateOfRunsInProgress; 540 540 try { 541 541 UpdateOfRunsInProgress = true; 542 542 UpdateFiltering(true); 543 } finally { UpdateOfRunsInProgress = oldUp ateRuns; }543 } finally { UpdateOfRunsInProgress = oldUpdateRuns; } 544 544 } 545 545 } … … 547 547 IRunCollectionConstraint constraint = (IRunCollectionConstraint)sender; 548 548 if (constraint.Active) { 549 var oldUp ateRuns = UpdateOfRunsInProgress;549 var oldUpdateRuns = UpdateOfRunsInProgress; 550 550 try { 551 551 UpdateOfRunsInProgress = true; 552 552 UpdateFiltering(true); 553 } finally { UpdateOfRunsInProgress = oldUp ateRuns; }553 } finally { UpdateOfRunsInProgress = oldUpdateRuns; } 554 554 } 555 555 }
Note: See TracChangeset
for help on using the changeset viewer.