Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/10 01:49:10 (14 years ago)
Author:
swagner
Message:

Adapted views of HeuristicLab.Core.Views according the new read-only property and renamed method SetEnableStateOfControls into SetEnabledStateOfControls (#973).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphView.cs

    r3361 r3362  
    7373        this.graphVisualizationInfoView.RelayoutGraph();
    7474
    75       this.SetEnableStateOfControls();
     75      this.SetEnabledStateOfControls();
    7676    }
    7777
    7878    protected override void OnReadOnlyChanged() {
    7979      base.OnReadOnlyChanged();
    80       this.SetEnableStateOfControls();
    81     }
    82 
    83     private void SetEnableStateOfControls() {
     80      this.SetEnabledStateOfControls();
     81    }
     82
     83    private void SetEnabledStateOfControls() {
    8484      if (Content == null) {
    8585        selectButton.Enabled = false;
Note: See TracChangeset for help on using the changeset viewer.