Browse Source

Merge pull request #2494 from beaverden/master

#2493 make SearchTermMatches virtual for possible FilterSettings extensions
pull/2521/head
Daniel Grunwald 4 years ago committed by GitHub
parent
commit
105cdfd330
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ILSpy/FilterSettings.cs

2
ILSpy/FilterSettings.cs

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

Loading…
Cancel
Save