Tools_SearchDialog.st
changeset 9600 301631add7e9
parent 9519 e02cc8f995ec
child 9619 23273d2df296
--- a/Tools_SearchDialog.st	Tue Oct 26 19:39:51 2010 +0200
+++ b/Tools_SearchDialog.st	Tue Oct 26 20:34:03 2010 +0200
@@ -127,7 +127,7 @@
 
             [
                 searchWhat == #globalName ifFalse:[ 
-                    what := DoWhatIMeanSupport selectorCompletion:s inEnvironment:Smalltalk match:(matchHolder value)
+                    what := DoWhatIMeanSupport selectorCompletion:s inEnvironment:Smalltalk match:(matchHolder value) ignoreCase:(caseHolder value not)
                 ] ifTrue:[ 
                     what := DoWhatIMeanSupport globalNameCompletion:s inEnvironment:Smalltalk match:(matchHolder value).
                 ].
@@ -138,6 +138,8 @@
                 matchProcess := nil.
             ].
         ] fork.
+
+    "Modified: / 26-10-2010 / 20:33:05 / cg"
 ! !
 
 !SearchDialog methodsFor:'public'!
@@ -1216,9 +1218,9 @@
 !SearchDialog class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools_SearchDialog.st,v 1.54 2010-07-11 15:09:55 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools_SearchDialog.st,v 1.55 2010-10-26 18:34:03 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/Tools_SearchDialog.st,v 1.54 2010-07-11 15:09:55 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools_SearchDialog.st,v 1.55 2010-10-26 18:34:03 cg Exp $'
 ! !