# HG changeset patch # User Claus Gittinger # Date 1065627267 -7200 # Node ID 453aee873a3d19e84d8f6a66e461584b330c78b5 # Parent 847d633792cebe11b97166bb751df2969a336229 not ifTrue -> ifFalse diff -r 847d633792ce -r 453aee873a3d FindFileApplication.st --- a/FindFileApplication.st Wed Oct 08 17:32:28 2003 +0200 +++ b/FindFileApplication.st Wed Oct 08 17:34:27 2003 +0200 @@ -584,7 +584,7 @@ sel := self selectionHolder value. (sel notNil and:[sel notEmpty]) ifTrue:[ entry := self resultList at:sel first. - entry asFilename exists not ifTrue:[ ^ self]. + entry asFilename exists ifFalse:[ ^ self]. application := targetApplication ? self masterApplication. application notNil ifTrue:[ application gotoFile:(entry asFilename). @@ -1107,5 +1107,5 @@ !FindFileApplication class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libtool/FindFileApplication.st,v 1.17 2003-10-02 17:42:02 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/FindFileApplication.st,v 1.18 2003-10-08 15:34:27 cg Exp $' ! !