Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/02/15 07:50:58 (9 years ago)
Author:
ascheibe
Message:

#2355 adapted MetaOpt branch to changes from r12926

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.MetaOptimization/HeuristicLab.HiveEngine.Views/3.3/HiveEngineView.cs

    r6984 r12930  
    7373        priorityTextBox.Text = string.Empty;
    7474        executionTimeOnHiveTextBox.Text = string.Empty;
    75         isPrivilegedCheckBox.Checked = false;
    7675        hiveExperimentListView.Content = null;
    7776        logView.Content = null;
     
    8079        priorityTextBox.Text = Content.Priority.ToString();
    8180        executionTimeOnHiveTextBox.Text = Content.ExecutionTimeOnHive.ToString();
    82         isPrivilegedCheckBox.Checked = Content.IsPrivileged;
    8381        hiveExperimentListView.Content = Content.Jobs;
    8482        logView.Content = Content.Log;
     
    9290        resourceIdsTextBox.ReadOnly = this.ReadOnly;
    9391        priorityTextBox.ReadOnly = this.ReadOnly;
    94         isPrivilegedCheckBox.Enabled = Content.IsAllowedPrivileged;
    9592      } else {
    9693        resourceIdsTextBox.ReadOnly = false;
    9794        priorityTextBox.ReadOnly = false;
    98         isPrivilegedCheckBox.Enabled = false;
    9995      }
    10096    }
     
    108104      Content.Priority = int.Parse(priorityTextBox.Text);
    109105    }
    110 
    111     private void isPrivilegedCheckBox_Validated(object sender, EventArgs e) {
    112       Content.IsPrivileged = isPrivilegedCheckBox.Checked;
    113     }
    114106    #endregion
    115107  }
Note: See TracChangeset for help on using the changeset viewer.