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:
Diffstat (limited to 'main/src/core/Mono.Texteditor/Mono.TextEditor.Vi/NewViEditMode.cs')
-rw-r--r--main/src/core/Mono.Texteditor/Mono.TextEditor.Vi/NewViEditMode.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/core/Mono.Texteditor/Mono.TextEditor.Vi/NewViEditMode.cs b/main/src/core/Mono.Texteditor/Mono.TextEditor.Vi/NewViEditMode.cs
index 2527e953bd..e83d383e32 100644
--- a/main/src/core/Mono.Texteditor/Mono.TextEditor.Vi/NewViEditMode.cs
+++ b/main/src/core/Mono.Texteditor/Mono.TextEditor.Vi/NewViEditMode.cs
@@ -35,7 +35,7 @@ namespace Mono.TextEditor.Vi
public class NewViEditMode : EditMode
{
ViStatusArea statusArea;
- TextEditor viTextEditor;
+ MonoTextEditor viTextEditor;
protected ViEditor ViEditor { get ; private set ;}
@@ -75,7 +75,7 @@ namespace Mono.TextEditor.Vi
}
}
- public override void AllocateTextArea (TextEditor textEditor, TextArea textArea, Gdk.Rectangle allocation)
+ public override void AllocateTextArea (MonoTextEditor textEditor, TextArea textArea, Gdk.Rectangle allocation)
{
statusArea.AllocateArea (textArea, allocation);
}
@@ -85,7 +85,7 @@ namespace Mono.TextEditor.Vi
ViEditor.ProcessKey (modifier, key, (char)unicodeKey);
}
- public new TextEditor Editor { get { return base.Editor; } }
+ public new MonoTextEditor Editor { get { return base.Editor; } }
public new TextEditorData Data { get { return base.Data; } }
public override bool WantsToPreemptIM {