Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/10 14:34:33 (14 years ago)
Author:
epitzer
Message:

Correctly update displayed method signature if operator parameters change (#842)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperatorView.cs

    r3008 r3014  
    7878        descriptionTextBox.Enabled = false;
    7979        assembliesTreeView.Nodes.Clear();
    80         parameterCollectionView1.Content = null;
     80        parameterCollectionView.Content = null;
    8181      } else {
    8282        codeEditor.Enabled = true;
     
    101101          ProgrammableOperator.CompilationUnitCode != null &&
    102102          ProgrammableOperator.CompilationUnitCode.Length > 0;
    103         parameterCollectionView1.Content = ProgrammableOperator.Parameters;       
     103        parameterCollectionView.Content = ProgrammableOperator.Parameters;
    104104      }
    105105    }
Note: See TracChangeset for help on using the changeset viewer.