- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.MainForm.WindowsForms/3.3/Views/View.cs
r14553 r14927 45 45 set { 46 46 if (InvokeRequired) { 47 Action<string> action = delegate (string s) { this.Caption = s; };47 Action<string> action = delegate (string s) { this.Caption = s; }; 48 48 Invoke(action, value); 49 49 } else { … … 61 61 set { 62 62 if (InvokeRequired) { 63 Action<bool> action = delegate (bool b) { this.ReadOnly = b; };63 Action<bool> action = delegate (bool b) { this.ReadOnly = b; }; 64 64 Invoke(action, value); 65 65 } else {
Note: See TracChangeset
for help on using the changeset viewer.