- Timestamp:
- 03/28/12 15:47:26 (13 years ago)
- Location:
- branches/HeuristicLab.Hive.Azure
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive.Azure
- Property svn:ignore
-
old new 3 3 *.resharper 4 4 *.suo 5 *.user 5 6 *.vsp 6 7 Doxygen 8 FxCopResults.txt 7 9 Google.ProtocolBuffers-0.9.1.dll 8 10 HeuristicLab 3.3.5.1.ReSharper.user
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.Views/3.3/HiveTasks/HiveTaskView.cs
r7270 r7669 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.Hive.Azure/HeuristicLab.Clients.Hive.Views/3.3/HiveTasks/OptimizerHiveTaskView.cs
r7270 r7669 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.