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@novell.com>2010-04-29 15:28:09 +0400
committerMike Krüger <mkrueger@novell.com>2010-04-29 15:28:09 +0400
commit949292dc83180bdd2862dce5a3f0b4f6cca21d8b (patch)
treedec9f613962f0391bd93aaef74ad0b4b0a4deec6 /main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
parentd9b4a9a62e892ab6df31fec64a13d336282fcdcd (diff)
* MonoDevelop.Gettext.Editor/POEditorWidget.cs: call destroy instead
of dispose. svn path=/trunk/monodevelop/; revision=156417
Diffstat (limited to 'main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs')
-rw-r--r--main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs b/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
index ec61ce30d7..2e26e8a3bb 100644
--- a/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
+++ b/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
@@ -379,21 +379,21 @@ namespace MonoDevelop.Gettext
if (DoSearchIn != SearchIn.Both) {
DoSearchIn = SearchIn.Both;
UpdateFromCatalog ();
- menu.Dispose ();
+ menu.Destroy ();
}
};
original.Activated += delegate {
if (DoSearchIn != SearchIn.Original) {
DoSearchIn = SearchIn.Original;
UpdateFromCatalog ();
- menu.Dispose ();
+ menu.Destroy ();
}
};
translated.Activated += delegate {
if (DoSearchIn != SearchIn.Translated) {
DoSearchIn = SearchIn.Translated;
UpdateFromCatalog ();
- menu.Dispose ();
+ menu.Destroy ();
}
};