diff -r 9f51f2ae935a -r 5b0673ccff1c FindFileApplication.st --- a/FindFileApplication.st Tue Apr 12 19:20:26 2005 +0200 +++ b/FindFileApplication.st Thu Apr 14 11:13:31 2005 +0200 @@ -628,7 +628,7 @@ Dialog warn:'Missing directory name'. ^ self. ]. - dir asFilename exists not ifTrue:[ + dir asFilename exists ifFalse:[ Dialog warn:('No such directory: ''%1''' bindWith:dir asString allBold). ^ self. ]. @@ -1482,7 +1482,7 @@ info at:1 put:filesSize. ]. (idxInList := fileSizesToSearchFor indexOf:filesSize) ~~ 0 ifTrue:[ - (setOfFilesToSearchFor includes:fn) not ifTrue:[ + (setOfFilesToSearchFor includes:fn) ifFalse:[ fn asFilename exists ifFalse:[ info at:1 put:nil. info at:2 put:nil. @@ -1628,5 +1628,5 @@ !FindFileApplication class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libtool/FindFileApplication.st,v 1.69 2005-02-11 15:09:37 mb Exp $' + ^ '$Header: /cvs/stx/stx/libtool/FindFileApplication.st,v 1.70 2005-04-14 09:12:17 cg Exp $' ! !