Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/18/10 05:05:57 (14 years ago)
Author:
swagner
Message:

Set ShowViewsInViewHost of OptimizerMainForm to true again (#972)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/TextDialog.cs

    r2917 r3399  
    2929      set {
    3030        if (InvokeRequired)
    31           Invoke(new Action<string>(x => this.Caption = x));
     31          Invoke(new Action<string>(x => this.Caption = x), value);
    3232        else
    3333          this.Text = value;
     
    3838      set {
    3939        if (InvokeRequired)
    40           Invoke(new Action<string>(x => this.Content = x));
     40          Invoke(new Action<string>(x => this.Content = x), value);
    4141        else
    4242          textTextBox.Text = value;
     
    4747      set {
    4848        if (InvokeRequired)
    49           Invoke(new Action<bool>(x => this.ReadOnly = x));
     49          Invoke(new Action<bool>(x => this.ReadOnly = x), value);
    5050        else {
    5151          textTextBox.ReadOnly = value;
Note: See TracChangeset for help on using the changeset viewer.