- Timestamp:
- 03/15/12 09:11:17 (13 years ago)
- Location:
- branches/HeuristicLab.TimeSeries
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.TimeSeries
-
branches/HeuristicLab.TimeSeries/HeuristicLab.Clients.Hive.Views/3.3/HiveTasks/HiveTaskView.cs
r7268 r7615 207 207 208 208 private void priorityComboBox_SelectedIndexChanged(object sender, EventArgs e) { 209 if (Content .Task.Priority != priorityComboBox.SelectedIndex) {209 if (Content != null && Content.Task != null && Content.Task.Priority != priorityComboBox.SelectedIndex) { 210 210 Content.Task.Priority = priorityComboBox.SelectedIndex; 211 211 } -
branches/HeuristicLab.TimeSeries/HeuristicLab.Clients.Hive.Views/3.3/HiveTasks/OptimizerHiveTaskView.cs
r7268 r7615 21 21 22 22 using System; 23 using System.Threading.Tasks; 23 24 using System.Windows.Forms; 24 25 using HeuristicLab.MainForm; 25 using System.Threading.Tasks;26 using HeuristicLab.MainForm.WindowsForms; 26 27 using HeuristicLab.PluginInfrastructure; 27 28 … … 75 76 FinishProgressView(); 76 77 ErrorHandling.ShowErrorDialog(this, "An error occured while resuming the task.", t.Exception); 77 }, TaskContinuationOptions.OnlyOnFaulted); 78 }, TaskContinuationOptions.OnlyOnFaulted); 78 79 } 79 80
Note: See TracChangeset
for help on using the changeset viewer.