- Timestamp:
- 03/10/16 22:31:28 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/OKBProblemView.cs
r13666 r13684 183 183 } 184 184 private void downloadCharacteristicsButton_Click(object sender, EventArgs e) { 185 var values = RunCreationClient. GetCharacteristicValues(Content.ProblemId).ToList();185 var values = RunCreationClient.Instance.GetCharacteristicValues(Content.ProblemId).ToList(); 186 186 var content = new StringMatrix(values.Count, 3); 187 187 for (var i = 0; i < values.Count; i++) { … … 204 204 } 205 205 try { 206 RunCreationClient. SetCharacteristicValues(Content.ProblemId, values);206 RunCreationClient.Instance.SetCharacteristicValues(Content.ProblemId, values); 207 207 } catch (Exception ex) { ErrorHandling.ShowErrorDialog(ex); } 208 208 }
Note: See TracChangeset
for help on using the changeset viewer.