*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Sat, 29 Jul 2000 13:52:24 +0200
changeset 2687 1c3f48a220b4
parent 2686 e814876e7d61
child 2688 9bb22571f558
*** empty log message ***
BrowserView.st
--- a/BrowserView.st	Wed Jul 26 14:45:52 2000 +0200
+++ b/BrowserView.st	Sat Jul 29 13:52:24 2000 +0200
@@ -11409,7 +11409,7 @@
     inputField entryCompletionBlock:[:contents |
         |s what m|
 
-        s := contents withoutSpaces.
+        s := contents string withoutSpaces.
         box topView withWaitCursorDo:[
             what := Smalltalk selectorCompletion:s.
             inputField contents:what first.
@@ -11562,6 +11562,7 @@
             self warn:'no class(es) for search'.
             ^ self.
         ].
+        sel := sel string.
 
         LastSearchPatterns isNil ifTrue:[
             LastSearchPatterns := OrderedCollection new.
@@ -14143,6 +14144,6 @@
 !BrowserView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.627 2000-07-25 11:21:55 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.628 2000-07-29 11:52:24 cg Exp $'
 ! !
 BrowserView initialize!