Browse Source

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
shortcuts
Siegfried Pammer 16 years ago
parent
commit
482e3c3640
  1. 2
      src/AddIns/Misc/Profiler/Frontend/AddIn/Src/Commands/DomMenuCommand.cs

2
src/AddIns/Misc/Profiler/Frontend/AddIn/Src/Commands/DomMenuCommand.cs

@ -80,7 +80,7 @@ namespace ICSharpCode.Profiler.AddIn.Commands @@ -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;
}

Loading…
Cancel
Save