Changeset 5214 for trunk/sources
- Timestamp:
- 01/05/11 02:48:47 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperatorView.cs
r5042 r5214 118 118 protected override void SetEnabledStateOfControls() { 119 119 base.SetEnabledStateOfControls(); 120 breakpointCheckBox.Enabled = Content != null && !Locked; 120 121 parameterCollectionView.Enabled = Content != null; 121 122 assembliesTreeView.Enabled = Content != null && !ReadOnly; … … 202 203 try { 203 204 ProgrammableOperator.Compile(); 204 } catch (Exception ex) { 205 } 206 catch (Exception ex) { 205 207 ErrorHandling.ShowErrorDialog(this, ex); 206 208 } -
trunk/sources/HeuristicLab.Operators.Views/3.3/MultiOperatorView.cs
r4435 r5214 77 77 protected override void SetEnabledStateOfControls() { 78 78 base.SetEnabledStateOfControls(); 79 breakpointCheckBox.Enabled = Content != null && ! ReadOnly;79 breakpointCheckBox.Enabled = Content != null && !Locked; 80 80 operatorListView.Enabled = Content != null; 81 81 parameterCollectionView.Enabled = Content != null; -
trunk/sources/HeuristicLab.Operators.Views/3.3/OperatorView.cs
r4477 r5214 74 74 protected override void SetEnabledStateOfControls() { 75 75 base.SetEnabledStateOfControls(); 76 breakpointCheckBox.Enabled = Content != null && ! ReadOnly;76 breakpointCheckBox.Enabled = Content != null && !Locked; 77 77 } 78 78 -
trunk/sources/HeuristicLab.Operators.Views/3.3/ValuesCollectorView.cs
r4435 r5214 77 77 protected override void SetEnabledStateOfControls() { 78 78 base.SetEnabledStateOfControls(); 79 breakpointCheckBox.Enabled = Content != null && ! ReadOnly;79 breakpointCheckBox.Enabled = Content != null && !Locked; 80 80 collectedValuesView.Enabled = Content != null; 81 81 parameterCollectionView.Enabled = Content != null;
Note: See TracChangeset
for help on using the changeset viewer.