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 <llsan@microsoft.com>2017-08-22 12:21:07 +0300
committerLluis Sanchez <llsan@microsoft.com>2017-08-22 12:21:32 +0300
commit4bfb0213ee24b62311d6ed8035423427567a7b85 (patch)
treea04da37f1adc4c824795224c57b99327b917aef6 /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs
parent51dd32084337dc0161cbd3b8320b447d4bc5f977 (diff)
Fix warnings in MD.Ide
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs
index 63f93482cf..6e28dc5616 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs
@@ -166,7 +166,7 @@ namespace MonoDevelop.Ide.Commands
protected override void Run ()
{
if (IdeApp.Workbench.ActiveDocument != null)
- IdeApp.Workbench.ActiveDocument.Close ();
+ IdeApp.Workbench.ActiveDocument.Close ().Ignore();
}
protected override void Update (CommandInfo info)
@@ -181,7 +181,7 @@ namespace MonoDevelop.Ide.Commands
{
protected override void Run ()
{
- IdeApp.Workspace.Close ();
+ IdeApp.Workspace.Close ().Ignore();
}
protected override void Update (CommandInfo info)
@@ -417,7 +417,7 @@ namespace MonoDevelop.Ide.Commands
{
protected override void Run ()
{
- IdeApp.Exit ();
+ IdeApp.Exit ().Ignore();
}
}
// MonoDevelop.Ide.Commands.FileTabCommands.CloseAllButThis Implemented in FileTabCommands.cs