# HG changeset patch # User Claus Gittinger # Date 1417014213 -3600 # Node ID 647b035e2f5fb21b105ddaf867af0626ba89bd57 # Parent b8003fbf8094a8d5653f79c83831a0e30c0ebc25 class: FileApplicationNoteBook diff -r b8003fbf8094 -r 647b035e2f5f 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 $' ! !