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:
authorLluis Sanchez Gual <lluis@novell.com>2011-06-29 00:17:21 +0400
committerLluis Sanchez Gual <lluis@novell.com>2011-06-29 00:17:21 +0400
commit8a7d129bfeb656c33ad754b61af3cba283f5da4a (patch)
tree9b12a245e8c4a66b38fbd388b8d462c6a922f1df /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands
parentd05a0b53a51e77966a1575377ec113df86f6dbd6 (diff)
Added basic updater service
The new core updater service handles scheduled update checks. It can be configured using the Updates option panel. Updater system can be plugged into it using the IUpdateHandler interface.
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/ToolsCommands.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/ToolsCommands.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/ToolsCommands.cs
index 429749f285..9bc0a15227 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/ToolsCommands.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/ToolsCommands.cs
@@ -31,6 +31,7 @@ using MonoDevelop.Core;
using MonoDevelop.Core.Execution;
using MonoDevelop.Ide.Gui;
using System;
+using MonoDevelop.Ide.Updater;
namespace MonoDevelop.Ide.Commands
{
@@ -45,7 +46,7 @@ namespace MonoDevelop.Ide.Commands
{
protected override void Run ()
{
- AddinUpdateHandler.ShowManager ();
+ AddinsUpdateHandler.Instance.ShowManager ();
}
}