From 1c31eff7af6ef5acea2ad66900602530c6e04f75 Mon Sep 17 00:00:00 2001 From: Sebastien LEBRETON Date: Sun, 14 Dec 2014 13:42:59 +0100 Subject: [PATCH] Change scope to public --- ILSpy/MainWindow.xaml.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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;