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:
authorMarius Ungureanu <marius.ungureanu@xamarin.com>2015-06-17 00:39:02 +0300
committerMarius Ungureanu <marius.ungureanu@xamarin.com>2015-06-17 00:41:47 +0300
commita9199305a26db9d8d209d83bb8f514f5f5c411cb (patch)
tree792d34f847756308b7f58cc2896c0b375af5127d /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution
parent43212a78e5d16847fab5313e3e68c77ac2fc8f6f (diff)
[Misc] 4/4 batch of checking disposes of dialogs.
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/CustomExecutionModeManagerDialog.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/CustomExecutionModeManagerDialog.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/CustomExecutionModeManagerDialog.cs
index 5f611e9ff8..81f89e9c76 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/CustomExecutionModeManagerDialog.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/CustomExecutionModeManagerDialog.cs
@@ -94,6 +94,7 @@ namespace MonoDevelop.Ide.Execution
}
} finally {
dlg.Destroy ();
+ dlg.Dispose ();
}
}
@@ -121,6 +122,7 @@ namespace MonoDevelop.Ide.Execution
}
} finally {
dlg.Destroy ();
+ dlg.Dispose ();
}
}