Tools_SearchDialog.st
changeset 6700 315739e2f34d
parent 6691 06bc56dc7252
child 7042 f543949862d3
equal deleted inserted replaced
6699:d8eaa3937354 6700:315739e2f34d
   166                 LastGlobalSearched := sel.
   166                 LastGlobalSearched := sel.
   167             ] ifFalse:[
   167             ] ifFalse:[
   168                 isSelector == #string ifTrue:[
   168                 isSelector == #string ifTrue:[
   169                     LastStringSearchArea := where.
   169                     LastStringSearchArea := where.
   170                 ] ifFalse:[
   170                 ] ifFalse:[
   171                     (sel startsWith:$#) ifTrue:[
   171                     (sel startsWith:'#''') ifTrue:[
   172                         (sel startsWith:'#''') ifTrue:[
   172                         sel := sel copyFrom:3.
   173                             sel := sel copyFrom:3.
   173                         (sel endsWith:$') ifTrue:[
   174                             (sel endsWith:$') ifTrue:[
   174                             sel := sel copyWithoutLast:1.
   175                                 sel := sel copyWithoutLast:1.
       
   176                             ].
       
   177                         ] ifFalse:[
       
   178                             sel := sel copyFrom:2.
       
   179                         ].
   175                         ].
   180                     ].
   176                     ].
   181                 ]
   177                 ]
   182             ]
   178             ]
   183         ].
   179         ].
   914 ! !
   910 ! !
   915 
   911 
   916 !SearchDialog class methodsFor:'documentation'!
   912 !SearchDialog class methodsFor:'documentation'!
   917 
   913 
   918 version
   914 version
   919     ^ '$Header: /cvs/stx/stx/libtool/Tools_SearchDialog.st,v 1.13 2006-03-14 13:22:10 cg Exp $'
   915     ^ '$Header: /cvs/stx/stx/libtool/Tools_SearchDialog.st,v 1.14 2006-03-16 08:42:03 cg Exp $'
   920 ! !
   916 ! !