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:
authorLluis Sanchez Gual <lluis@novell.com>2011-03-31 21:43:14 +0400
committerLluis Sanchez Gual <lluis@novell.com>2011-03-31 21:43:14 +0400
commit4795704dc3d1338fb64a4e5629f77ec75173f3ec (patch)
tree1ccbef676f64d5ea3c187e10188f5fd7364ac134 /extras/ValaBinding
parent98797cb14ff0bfa036c5091fd6fa8e49d1608145 (diff)
Track api changes.
Diffstat (limited to 'extras/ValaBinding')
-rw-r--r--extras/ValaBinding/Navigation/LanguageItemCommandHandler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/ValaBinding/Navigation/LanguageItemCommandHandler.cs b/extras/ValaBinding/Navigation/LanguageItemCommandHandler.cs
index c774a3d468..ba4a622a51 100644
--- a/extras/ValaBinding/Navigation/LanguageItemCommandHandler.cs
+++ b/extras/ValaBinding/Navigation/LanguageItemCommandHandler.cs
@@ -55,7 +55,7 @@ namespace MonoDevelop.ValaBinding.Navigation
if (null != item && 0 < item.SourceReferences.Count) {
SourceReference reference = item.SourceReferences[0];
- IdeApp.Workbench.OpenDocument (reference.File, reference.FirstLine, reference.FirstColumn, true);
+ IdeApp.Workbench.OpenDocument (reference.File, reference.FirstLine, reference.FirstColumn);
}
}
}