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:
authorMichael Hutchinson <mhutchinson@novell.com>2010-04-27 02:33:52 +0400
committerMichael Hutchinson <mhutchinson@novell.com>2010-04-27 02:33:52 +0400
commit8751296c82e05d0f30115049db221e617cd15b3a (patch)
tree798942ca793c00774ace5b340941e1be0163a444 /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.NavigateToDialog
parent87079f8e953edcb60f56f462e37194fdca27a2d5 (diff)
* MonoDevelop.Ide.NavigateToDialog/NavigateToDialog.cs: Don't
include the project folder in the relative name. svn path=/trunk/monodevelop/; revision=156148
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.NavigateToDialog')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.NavigateToDialog/NavigateToDialog.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.NavigateToDialog/NavigateToDialog.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.NavigateToDialog/NavigateToDialog.cs
index a6e1e6b3b9..78d68891bd 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.NavigateToDialog/NavigateToDialog.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.NavigateToDialog/NavigateToDialog.cs
@@ -906,7 +906,7 @@ namespace MonoDevelop.Ide.NavigateToDialog
internal static string GetRelProjectPath (ProjectFile file)
{
if (file.Project != null)
- return System.IO.Path.Combine (System.IO.Path.GetFileName (file.Project.BaseDirectory), file.ProjectVirtualPath);
+ return file.ProjectVirtualPath;
return file.FilePath;
}
}