Changeset 6554
- Timestamp:
- 07/08/11 14:45:57 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Starter/StarterForm.cs
r6518 r6554 46 46 private SplashScreen splashScreen; 47 47 private bool updatesAvailable = false; 48 49 48 /// <summary> 50 49 /// Initializes an instance of the starter form. … … 69 68 UpdateApplicationsList(); 70 69 71 CheckUpdatesAvailableAsync(pluginPath); 72 } 73 74 private void CheckUpdatesAvailableAsync(string pluginPath) { 70 CheckUpdatesAvailableAsync(); 71 } 72 73 private void CheckUpdatesAvailableAsync() { 74 string pluginPath = Path.GetFullPath(Application.StartupPath); 75 75 var task = Task.Factory.StartNew<bool>(() => { 76 76 var installationManager = new InstallationManager(pluginPath); … … 158 158 form.ShowDialog(this); 159 159 } 160 updatesAvailable = false; 161 CheckUpdatesAvailableAsync(); 160 162 UpdateApplicationsList(); 161 163 }
Note: See TracChangeset
for help on using the changeset viewer.