FindFileApplication.st
changeset 5252 453aee873a3d
parent 5231 d74730347ed8
child 5279 165a7b841a86
--- 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 $'
 ! !