Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/16/11 12:39:32 (13 years ago)
Author:
ascheibe
Message:

#1233 removed useLocalPlugins

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine.Views/3.4/HiveEngineView.cs

    r6419 r6426  
    7373        priorityTextBox.Text = string.Empty;
    7474        executionTimeOnHiveTextBox.Text = string.Empty;
    75         useLocalPluginsCheckBox.Checked = false;
    7675        isPrivilegedCheckBox.Checked = false;
    7776        hiveExperimentListView.Content = null;
     
    8180        priorityTextBox.Text = Content.Priority.ToString();
    8281        executionTimeOnHiveTextBox.Text = Content.ExecutionTimeOnHive.ToString();
    83         useLocalPluginsCheckBox.Checked = Content.UseLocalPlugins;
    8482        isPrivilegedCheckBox.Checked = Content.IsPrivileged;
    8583        hiveExperimentListView.Content = Content.HiveExperiments;
     
    9492        resourceIdsTextBox.ReadOnly = this.ReadOnly;
    9593        priorityTextBox.ReadOnly = this.ReadOnly;
    96         useLocalPluginsCheckBox.Enabled = !this.ReadOnly;
    9794        isPrivilegedCheckBox.Enabled = !this.ReadOnly; // TODO: check for user rights
    9895      } else {
    9996        resourceIdsTextBox.ReadOnly = false;
    10097        priorityTextBox.ReadOnly = false;
    101         useLocalPluginsCheckBox.Enabled = false;
    10298        isPrivilegedCheckBox.Enabled = false;
    10399      }
    104100    }
    105    
     101
    106102    #region Event Handlers (child controls)
    107103    private void resourceIdsTextBox_Validated(object sender, EventArgs e) {
     
    111107    private void priorityTextBox_Validated(object sender, EventArgs e) {
    112108      Content.Priority = int.Parse(priorityTextBox.Text);
    113     }
    114 
    115     private void useLocalPluginsCheckBox_CheckedChanged(object sender, EventArgs e) {
    116       Content.UseLocalPlugins = useLocalPluginsCheckBox.Checked;
    117109    }
    118110
Note: See TracChangeset for help on using the changeset viewer.