Care for nil
authorStefan Vogel <sv@exept.de>
Wed, 18 Dec 2002 19:32:32 +0100
changeset 4393 194816f3a6ea
parent 4392 feb0bffd27b8
child 4394 a7fedd485b73
Care for nil
FileApplicationNoteBook.st
--- a/FileApplicationNoteBook.st	Wed Dec 18 14:28:36 2002 +0100
+++ b/FileApplicationNoteBook.st	Wed Dec 18 19:32:32 2002 +0100
@@ -569,7 +569,7 @@
             ].
         ].
     ].
-    sameAppls notEmpty ifTrue:[
+    sameAppls size ~~ 0 ifTrue:[
         " take first all applications which have nil items 
           second the selected 
           third the first
@@ -4887,5 +4887,5 @@
 !FileApplicationNoteBook class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.43 2002-12-18 13:28:36 penk Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.44 2002-12-18 18:32:32 stefan Exp $'
 ! !