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-04-04 15:10:47 +0400
committerMike Krüger <mkrueger@xamarin.com>2014-04-04 15:10:47 +0400
commit644867664b0a83b802e680685742958a41fae64d (patch)
tree5971d2d503ca8a69984e6b136de82393cc8cd867 /main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
parentbd02a08de88b371cabef3aab018b178511965b7e (diff)
[Ide] TextEditor is now using a decorator pattern.
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.cs8
1 files changed, 4 insertions, 4 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 175020a0d7..e73197cf25 100644
--- a/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
+++ b/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
@@ -57,8 +57,8 @@ namespace MonoDevelop.Gettext
Catalog catalog;
string poFileName;
ITextEditorOptions options = new TextEditorOptions ();
- ITextEditor texteditorOriginal = DocumentFactory.CreateNewEditor ();
- ITextEditor texteditorPlural = DocumentFactory.CreateNewEditor ();
+ TextEditor texteditorOriginal = DocumentFactory.CreateNewEditor ();
+ TextEditor texteditorPlural = DocumentFactory.CreateNewEditor ();
static List<POEditorWidget> widgets = new List<POEditorWidget> ();
@@ -468,8 +468,8 @@ namespace MonoDevelop.Gettext
this.Catalog = newCatalog;
UpdateTasks ();
}
- List<ITextEditor> notebookTranslatedEditors = new List<ITextEditor> ();
- ITextEditor GetTextView (int index)
+ List<TextEditor> notebookTranslatedEditors = new List<TextEditor> ();
+ TextEditor GetTextView (int index)
{
return notebookTranslatedEditors[index];
}