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>2014-07-07 09:10:36 +0400
committerMike Krüger <mkrueger@xamarin.com>2014-07-07 09:10:36 +0400
commit97db845b1f1840b9aeb70845ff619a4ec7f08dae (patch)
tree33aaf8af2d229edd6655d3ac03ad87ba82f14167 /main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor
parent2ef5bb7a8eadbb14a01c7e320eade270d69c7bee (diff)
[Ide] Removed IEditorActionHost from the public API. Editor actions
can now be done using the static EditActions class.
Diffstat (limited to 'main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor')
-rw-r--r--main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs2
1 files changed, 1 insertions, 1 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 b025f674e5..5b56d86952 100644
--- a/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
+++ b/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
@@ -644,7 +644,7 @@ namespace MonoDevelop.Gettext
continue;
textView.ClearSelection ();
textView.Text = entry != null ? entry.GetTranslation (i) : "";
- textView.Actions.MoveCaretToDocumentEnd ();
+ EditActions.MoveCaretToDocumentEnd (textView);
}
foreach (string reference in entry.References) {