From 482e3c364033c15b00b56fd215987fec1cf59430 Mon Sep 17 00:00:00 2001 From: Siegfried Pammer Date: Wed, 2 Sep 2009 15:14:29 +0000 Subject: [PATCH] Profiler: fixed "Find references" for methods without source code git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@4865 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- .../Misc/Profiler/Frontend/AddIn/Src/Commands/DomMenuCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AddIns/Misc/Profiler/Frontend/AddIn/Src/Commands/DomMenuCommand.cs b/src/AddIns/Misc/Profiler/Frontend/AddIn/Src/Commands/DomMenuCommand.cs index 87ba144ec2..b3d2895713 100644 --- a/src/AddIns/Misc/Profiler/Frontend/AddIn/Src/Commands/DomMenuCommand.cs +++ b/src/AddIns/Misc/Profiler/Frontend/AddIn/Src/Commands/DomMenuCommand.cs @@ -80,7 +80,7 @@ namespace ICSharpCode.Profiler.AddIn.Commands foreach (IProject project in ProjectService.OpenSolution.Projects) { IProjectContent content = ParserService.GetProjectContent(project); if (content != null) { - IClass c = content.GetClassByReflectionName(name, false); + IClass c = content.GetClassByReflectionName(name, true); if (c != null) return c; }