Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/10 01:49:10 (15 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/GraphVisualizationInfoView.cs

    r3355 r3362  
    7676    protected override void OnReadOnlyChanged() {
    7777      base.OnReadOnlyChanged();
    78       this.SetEnableStateOfControls();
    79     }
    80 
    81     private void SetEnableStateOfControls() {
     78      this.SetEnabledStateOfControls();
     79    }
     80
     81    private void SetEnabledStateOfControls() {
    8282      DeleteTool deleteTool = (DeleteTool) this.Controller.Tools.Where( t => t.Name == ControllerBase.DeleteToolName).FirstOrDefault();
    8383      HeuristicLab.Netron.Controller controller = this.Controller as HeuristicLab.Netron.Controller;
     
    110110        this.UpdateLayoutRoot();
    111111      }
    112       this.SetEnableStateOfControls();
     112      this.SetEnabledStateOfControls();
    113113    }
    114114
Note: See TracChangeset for help on using the changeset viewer.