Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3354 for trunk


Ignore:
Timestamp:
04/15/10 16:06:07 (14 years ago)
Author:
mkommend
Message:

removed unnecessary code in View.OnReadyOnlyChanged (ticket #973)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/View.cs

    r3350 r3354  
    133133        if (handler != null)
    134134          handler(this, EventArgs.Empty);
    135         foreach (Control control in this.Controls) {
    136           IView view = control as IView;
    137           if (view != null)
    138             view.ReadOnly = this.readOnly;
    139           ViewHost viewHost = control as ViewHost;
    140           if (viewHost != null)
    141             viewHost.ReadOnly = this.readOnly;
    142         }
    143135      }
    144136    }
Note: See TracChangeset for help on using the changeset viewer.