Browse Source

#2493 make SearchTermMatches virtual for possible FilterClass extensions

pull/2494/head
Denis Rozimovschii 4 years ago
parent
commit
e95c09b9d8
  1. 2
      ILSpy/FilterSettings.cs

2
ILSpy/FilterSettings.cs

@ -73,7 +73,7 @@ namespace ICSharpCode.ILSpy
/// <summary>
/// Gets whether a node with the specified text is matched by the current search term.
/// </summary>
public bool SearchTermMatches(string text)
public virtual bool SearchTermMatches(string text)
{
if (string.IsNullOrEmpty(searchTerm))
return true;

Loading…
Cancel
Save