Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (8 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.MainForm.WindowsForms/3.3/Views/View.cs

    r14553 r14927  
    4545      set {
    4646        if (InvokeRequired) {
    47           Action<string> action = delegate(string s) { this.Caption = s; };
     47          Action<string> action = delegate (string s) { this.Caption = s; };
    4848          Invoke(action, value);
    4949        } else {
     
    6161      set {
    6262        if (InvokeRequired) {
    63           Action<bool> action = delegate(bool b) { this.ReadOnly = b; };
     63          Action<bool> action = delegate (bool b) { this.ReadOnly = b; };
    6464          Invoke(action, value);
    6565        } else {
Note: See TracChangeset for help on using the changeset viewer.