diff --git a/ILSpy/MainWindow.xaml.cs b/ILSpy/MainWindow.xaml.cs index 3624aa784..fff3a39c9 100644 --- a/ILSpy/MainWindow.xaml.cs +++ b/ILSpy/MainWindow.xaml.cs @@ -481,7 +481,8 @@ namespace ICSharpCode.ILSpy } #region Node Selection - internal void SelectNode(SharpTreeNode obj) + + public void SelectNode(SharpTreeNode obj) { if (obj != null) { if (!obj.AncestorsAndSelf().Any(node => node.IsHidden)) { @@ -500,7 +501,7 @@ namespace ICSharpCode.ILSpy /// /// Retrieves a node using the .ToString() representations of its ancestors. /// - SharpTreeNode FindNodeByPath(string[] path, bool returnBestMatch) + public SharpTreeNode FindNodeByPath(string[] path, bool returnBestMatch) { if (path == null) return null; @@ -522,7 +523,7 @@ namespace ICSharpCode.ILSpy /// /// Gets the .ToString() representation of the node's ancestors. /// - string[] GetPathForNode(SharpTreeNode node) + public string[] GetPathForNode(SharpTreeNode node) { if (node == null) return null;