care for no selection in menuLists browseClass function
authorClaus Gittinger <cg@exept.de>
Fri, 14 Dec 2001 11:58:51 +0100
changeset 3515 8c0262e23e23
parent 3514 62c20ae2fc4e
child 3516 e89f29923362
care for no selection in menuLists browseClass function
BrowserView.st
--- a/BrowserView.st	Fri Dec 14 10:29:06 2001 +0100
+++ b/BrowserView.st	Fri Dec 14 11:58:51 2001 +0100
@@ -5107,9 +5107,9 @@
     ].
 
     classMethodListView notNil ifTrue:[
-        sel := classMethodListView selectionValue string.
+        sel := classMethodListView selectionValue.
         sel notNil ifTrue:[
-            sel := self selectorFromClassMethodString:sel
+            sel := self selectorFromClassMethodString:sel string
         ]
     ].
     self doClassMenu:[:currentClass | aBlock value:currentClass value:sel]
@@ -14945,6 +14945,6 @@
 !BrowserView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.705 2001-12-14 09:09:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.706 2001-12-14 10:58:51 cg Exp $'
 ! !
 BrowserView initialize!