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
path: root/main
diff options
context:
space:
mode:
authorMike Krüger <mkrueger@xamarin.com>2015-02-08 11:12:31 +0300
committerMike Krüger <mkrueger@xamarin.com>2015-02-08 11:12:31 +0300
commitb97c166e7e4228a3fdf5f8e6f1420f44fc809938 (patch)
treef72bb5020ee26652616abc1c64c85d552fdf1362 /main
parente97783adab1c8bc9361ebd828656583832f5d32d (diff)
[TextEditor] Fix build.
Diffstat (limited to 'main')
-rw-r--r--main/src/core/Mono.Texteditor/Mono.TextEditor/Actions/MiscActions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/Mono.Texteditor/Mono.TextEditor/Actions/MiscActions.cs b/main/src/core/Mono.Texteditor/Mono.TextEditor/Actions/MiscActions.cs
index 42c1044a06..8a42f8b0a0 100644
--- a/main/src/core/Mono.Texteditor/Mono.TextEditor/Actions/MiscActions.cs
+++ b/main/src/core/Mono.Texteditor/Mono.TextEditor/Actions/MiscActions.cs
@@ -563,7 +563,7 @@ namespace Mono.TextEditor
static DocumentLocation LimitColumn (TextEditorData data, DocumentLocation loc)
{
- return new DocumentLocation (loc.Line, Math.Min (loc.Column, data.GetLine (loc.Line).Length + 1));
+ return new DocumentLocation (loc.Line, System.Math.Min (loc.Column, data.GetLine (loc.Line).Length + 1));
}
}
} \ No newline at end of file