Browse Source

ReflectorAddIn: Fixed finding nested classes and members thereof.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@4816 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Christian Hornung 16 years ago
parent
commit
ce43d8fd7f
  1. 2
      src/AddIns/Misc/ReflectorAddIn/ReflectorAddIn/Project/Src/ReflectorController.cs

2
src/AddIns/Misc/ReflectorAddIn/ReflectorAddIn/Project/Src/ReflectorController.cs

@ -82,7 +82,7 @@ namespace ReflectorAddIn @@ -82,7 +82,7 @@ namespace ReflectorAddIn
public static void TryGoTo(string assemblyName, AbstractEntity entity)
{
string dotnetName = entity.DocumentationTag;
string dotnetName = entity.DocumentationTag.Replace('+', '.');
string selectCommand;
if (entity is IClass) {
selectCommand = "SelectTypeDeclaration";

Loading…
Cancel
Save