Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/22/11 16:45:46 (14 years ago)
Author:
mkommend
Message:

#1418: Merged trunk changes into branch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Core.Views/3.3/CreateParameterDialog.cs

    r5445 r5796  
    3232      get {
    3333        try {
    34           return (IParameter)Activator.CreateInstance(parameterTypeSelector.SelectedType, nameTextBox.Text, descriptionTextBox.Text);
     34          IParameter parameter = (IParameter)Activator.CreateInstance(parameterTypeSelector.SelectedType, nameTextBox.Text, descriptionTextBox.Text);
     35          parameter.Hidden = false;
     36          return parameter;
    3537        }
    3638        catch (Exception ex) {
Note: See TracChangeset for help on using the changeset viewer.