Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/10/10 16:09:34 (13 years ago)
Author:
epitzer
Message:

Show parameters of active execution context in DebugEngine (#47)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.DebugEngine/DebugEngineView.cs

    r4759 r4765  
    129129      IAtomicOperation atomicOperation = operation as IAtomicOperation;
    130130      operationTextBox.Text = "<none>";
     131      parameterCollectionView.Content = null;
    131132      toolTip.SetToolTip(operationTextBox, null);
    132133      if (atomicOperation != null && atomicOperation.Operator != null) {
     
    140141      IScope scope = null;
    141142      if (context != null) {
     143        parameterCollectionView.Content = context.Parameters;
    142144        scope = context.Scope;
    143145        while (scope != null && scope.Parent != null)
Note: See TracChangeset for help on using the changeset viewer.