FileApplicationNoteBook.st
changeset 14516 805d42ab3c16
parent 14498 16ebee6b698d
child 14517 65a293fbfe93
--- a/FileApplicationNoteBook.st	Mon Jun 16 15:20:19 2014 +0200
+++ b/FileApplicationNoteBook.st	Tue Jun 17 11:00:56 2014 +0200
@@ -517,7 +517,7 @@
 
     | applList applItem itemClass itemType appl|
 
-    anItem isNil ifTrue:[ ^ self ].
+    anItem isNil ifTrue:[ ^ nil ].
     anItem isDirectory ifTrue:[
         self warn:'No Application to open for directory:', anItem fileName asString, ' found'.
         ^ nil.
@@ -547,7 +547,7 @@
             operation:#open
             mimeType:nil 
             ifNone:[self openDefaultApplicationByItem:anItem].
-        ^ self.
+        ^ nil.
     ].
 
     ^ self openDefaultApplicationByItem:anItem.
@@ -7341,10 +7341,10 @@
 !FileApplicationNoteBook class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.296 2014-06-14 09:05:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.297 2014-06-17 09:00:56 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.296 2014-06-14 09:05:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.297 2014-06-17 09:00:56 cg Exp $'
 ! !