FindFileApplication.st
changeset 9536 ea60487ceeee
parent 9475 ec84fab74033
child 10441 3238040023bb
--- a/FindFileApplication.st	Sun Aug 08 14:42:31 2010 +0200
+++ b/FindFileApplication.st	Sun Aug 08 14:42:48 2010 +0200
@@ -1406,7 +1406,7 @@
 
     expanded isNil ifTrue:[
         window := self builder window.
-        window ifNotNil:[
+        window notNil ifTrue:[
             window := window topView.
             extent := window extent.
             window extent:((extent x) @ (extent y + 300)).
@@ -1414,6 +1414,8 @@
             window containerChangedSize.
         ].
     ].
+
+    "Modified: / 08-08-2010 / 14:42:40 / cg"
 ! !
 
 !FindFileApplication methodsFor:'private - searching'!
@@ -1926,9 +1928,9 @@
 !FindFileApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FindFileApplication.st,v 1.91 2010-05-07 12:28:14 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FindFileApplication.st,v 1.92 2010-08-08 12:42:48 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/FindFileApplication.st,v 1.91 2010-05-07 12:28:14 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FindFileApplication.st,v 1.92 2010-08-08 12:42:48 cg Exp $'
 ! !