Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Krüger <mkrueger@xamarin.com>2011-09-09 14:52:51 +0400
committerMike Krüger <mkrueger@xamarin.com>2011-09-09 14:52:51 +0400
commit401f5adb244037a081d34f5636baa1bee76c854d (patch)
tree53be572ffd1956d6ac4fa2af05f957ea0926e24e /main/src/core/MonoDevelop.Startup
parent198e1e6f915777cac551a6d3880a62650cd6235d (diff)
Fixed possible race caused by monodevelop branding (branding has now
moved to it's own service).
Diffstat (limited to 'main/src/core/MonoDevelop.Startup')
-rw-r--r--main/src/core/MonoDevelop.Startup/MonoDevelop.Startup/MonoDevelopMain.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/core/MonoDevelop.Startup/MonoDevelop.Startup/MonoDevelopMain.cs b/main/src/core/MonoDevelop.Startup/MonoDevelop.Startup/MonoDevelopMain.cs
index 5d97a0e0ef..e9186ba7d9 100644
--- a/main/src/core/MonoDevelop.Startup/MonoDevelop.Startup/MonoDevelopMain.cs
+++ b/main/src/core/MonoDevelop.Startup/MonoDevelop.Startup/MonoDevelopMain.cs
@@ -24,12 +24,12 @@ namespace MonoDevelop.Startup
return app.Run (args);
} catch (Exception ex) {
if (!retry && AddinManager.IsInitialized) {
- LoggingService.LogWarning (PropertyService.ApplicationName + " failed to start. Rebuilding addins registry.");
+ LoggingService.LogWarning (BrandingService.ApplicationName + " failed to start. Rebuilding addins registry.");
AddinManager.Registry.Rebuild (new Mono.Addins.ConsoleProgressStatus (true));
LoggingService.LogInfo ("Addin registry rebuilt. Restarting MonoDevelop.");
retry = true;
} else {
- LoggingService.LogFatalError (PropertyService.ApplicationName + " failed to start. Some of the assemblies required to run MonoDevelop (for example gtk-sharp, gnome-sharp or gtkhtml-sharp) may not be properly installed in the GAC.", ex);
+ LoggingService.LogFatalError (BrandingService.ApplicationName + " failed to start. Some of the assemblies required to run MonoDevelop (for example gtk-sharp, gnome-sharp or gtkhtml-sharp) may not be properly installed in the GAC.", ex);
retry = false;
}
} finally {