Changeset 5001
- Timestamp:
- 11/30/10 16:00:59 (14 years ago)
- Location:
- branches/HeuristicLab.DebugEngine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DebugEngine/DebugEngine.cs
r4996 r5001 21 21 22 22 using System; 23 using System.Collections.Generic;24 23 using System.Linq; 25 24 using System.Threading; … … 79 78 80 79 [Storable] 81 public ILog Log { get; pr otectedset; }82 83 [Storable] 84 public ExecutionStack ExecutionStack { get; pr otectedset; }80 public ILog Log { get; private set; } 81 82 [Storable] 83 public ExecutionStack ExecutionStack { get; private set; } 85 84 86 85 [Storable] -
branches/HeuristicLab.DebugEngine/OperatorTraceView.cs
r4998 r5001 72 72 73 73 private void UpdateOperatorTrace() { 74 if (suspended)75 return;76 74 listView.BeginUpdate(); 77 75 listView.Items.Clear(); … … 113 111 } 114 112 #endregion 115 116 private bool suspended = false;117 public void SuspendUpdate() {118 suspended = true;119 }120 public void ResumeUpdate() {121 suspended = false;122 UpdateOperatorTrace();123 }124 113 } 125 114
Note: See TracChangeset
for help on using the changeset viewer.