- Timestamp:
- 03/15/12 09:11:17 (13 years ago)
- Location:
- branches/HeuristicLab.TimeSeries
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.TimeSeries
-
branches/HeuristicLab.TimeSeries/HeuristicLab.Clients.Hive.Views/3.3/HeuristicLab.Clients.Hive.Views-3.3.csproj
r7460 r7615 165 165 <None Include="Plugin.cs.frame" /> 166 166 <Compile Include="Plugin.cs" /> 167 <Compile Include="Progress\ProgressView.cs">168 <SubType>UserControl</SubType>169 </Compile>170 <Compile Include="Progress\ProgressView.designer.cs">171 <DependentUpon>ProgressView.cs</DependentUpon>172 </Compile>173 167 <Compile Include="Properties\AssemblyInfo.cs" /> 174 168 <None Include="Properties\AssemblyInfo.cs.frame" /> -
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.