BrowserView.st
changeset 2590 bc4befd23834
parent 2588 4d59125b5f59
child 2592 bd0bf3e634f2
equal deleted inserted replaced
2589:2342403139a7 2590:bc4befd23834
 11171     isSelector ifTrue:[
 11171     isSelector ifTrue:[
 11172         sel := self selectorToSearchFor.
 11172         sel := self selectorToSearchFor.
 11173     ] ifFalse:[
 11173     ] ifFalse:[
 11174         sel := self stringToSearchFor.
 11174         sel := self stringToSearchFor.
 11175     ].
 11175     ].
       
 11176     sel size == 0 ifTrue:[
       
 11177         "/ use last searchString
       
 11178         LastSearchPatterns size > 0 ifTrue:[
       
 11179             sel := LastSearchPatterns first.
       
 11180         ].
       
 11181     ].
 11176     selectorHolder := sel asValue.
 11182     selectorHolder := sel asValue.
 11177 
 11183 
 11178     box := Dialog new.
 11184     box := Dialog new.
 11179     (box addTextLabel:(resources string:title)) adjust:#left.
 11185     (box addTextLabel:(resources string:title)) adjust:#left.
 11180 
 11186 
 13815 ! !
 13821 ! !
 13816 
 13822 
 13817 !BrowserView class methodsFor:'documentation'!
 13823 !BrowserView class methodsFor:'documentation'!
 13818 
 13824 
 13819 version
 13825 version
 13820     ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.593 2000-02-07 11:34:49 cg Exp $'
 13826     ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.594 2000-02-07 13:38:46 cg Exp $'
 13821 ! !
 13827 ! !
 13822 BrowserView initialize!
 13828 BrowserView initialize!