exception access
authorClaus Gittinger <cg@exept.de>
Sat, 27 Apr 2013 14:27:39 +0200
changeset 3119 af4a0d795d01
parent 3118 f18d1909c51c
child 3120 ed7676f65f22
exception access
GIFReader.st
--- a/GIFReader.st	Fri Apr 26 11:48:00 2013 +0200
+++ b/GIFReader.st	Sat Apr 27 14:27:39 2013 +0200
@@ -909,7 +909,7 @@
     |convertedImage|
 
     image depth ~~ 8 ifTrue:[
-        Image errorSignal handle:[:ex |
+        Error handle:[:ex |
             ^ Image cannotRepresentImageSignal 
                 raiseWith:image
                 errorString:('GIF failed to convert image to depth8: ', ex description).
@@ -990,11 +990,12 @@
 !GIFReader class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/GIFReader.st,v 1.99 2012-07-17 11:39:31 anwild Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/GIFReader.st,v 1.100 2013-04-27 12:27:39 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview2/GIFReader.st,v 1.99 2012-07-17 11:39:31 anwild Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/GIFReader.st,v 1.100 2013-04-27 12:27:39 cg Exp $'
 ! !
 
+
 GIFReader initialize!