From e95c09b9d8186f6cd1dd2531b509d522e7d076ae Mon Sep 17 00:00:00 2001 From: Denis Rozimovschii Date: Mon, 30 Aug 2021 19:17:45 +0300 Subject: [PATCH] #2493 make SearchTermMatches virtual for possible FilterClass extensions --- ILSpy/FilterSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ILSpy/FilterSettings.cs b/ILSpy/FilterSettings.cs index e1e11269c..11930783e 100644 --- a/ILSpy/FilterSettings.cs +++ b/ILSpy/FilterSettings.cs @@ -73,7 +73,7 @@ namespace ICSharpCode.ILSpy /// /// Gets whether a node with the specified text is matched by the current search term. /// - public bool SearchTermMatches(string text) + public virtual bool SearchTermMatches(string text) { if (string.IsNullOrEmpty(searchTerm)) return true;