# HG changeset patch # User Claus Gittinger # Date 1336024946 -7200 # Node ID e17b2eacfe84a76af345b4a679205e059fbde47d # Parent 9adfb8a84696b6a43b55d0426422b55805a38946 changed: #searchPatternMatches diff -r 9adfb8a84696 -r e17b2eacfe84 MethodFinderWindow.st --- a/MethodFinderWindow.st Sat Apr 28 21:19:51 2012 +0200 +++ b/MethodFinderWindow.st Thu May 03 08:02:26 2012 +0200 @@ -707,6 +707,9 @@ self codeHolder value: nil. "reset the source" self withCursor:Cursor execute do:[ + pattern includesMatchCharacters ifFalse:[ + pattern := '*',pattern,'*' + ]. list := SystemBrowser findImplementorsMatching:pattern in:Smalltalk allClasses ignoreCase:true. ].