class: FileApplicationNoteBook
authorClaus Gittinger <cg@exept.de>
Wed, 26 Nov 2014 16:03:33 +0100
changeset 14907 647b035e2f5f
parent 14906 b8003fbf8094
child 14908 c936f3450d63
class: FileApplicationNoteBook
FileApplicationNoteBook.st
--- a/FileApplicationNoteBook.st	Wed Nov 26 13:07:44 2014 +0100
+++ b/FileApplicationNoteBook.st	Wed Nov 26 16:03:33 2014 +0100
@@ -4245,6 +4245,7 @@
     fn := self fileName.
     Image badImageFormatQuerySignal handle:[:ex |
         e := ex description.
+        ex mayProceed ifTrue:[ ex proceed ].
     ] do:[
         img := Image fromFile:fn.
     ].
@@ -4259,6 +4260,9 @@
         Dialog warn:e.
         ^ nil
     ].
+    e notNil ifTrue:[
+        Dialog information:'An error occurred while decoding some parts of the image.\However, some image data was retrieved...' withCRs.
+    ].
     ^ img.
 !
 
@@ -7488,10 +7492,10 @@
 !FileApplicationNoteBook class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.309 2014-11-26 12:07:44 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.310 2014-11-26 15:03:33 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.309 2014-11-26 12:07:44 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.310 2014-11-26 15:03:33 cg Exp $'
 ! !