class: MacOSXIconReader
authorClaus Gittinger <cg@exept.de>
Fri, 21 Jun 2013 00:47:18 +0200
changeset 3184 de612ee1585e
parent 3183 434c79bbe0bf
child 3185 0d09b958253d
class: MacOSXIconReader changed:9 methods
MacOSXIconReader.st
--- a/MacOSXIconReader.st	Fri Jun 21 00:43:05 2013 +0200
+++ b/MacOSXIconReader.st	Fri Jun 21 00:47:18 2013 +0200
@@ -172,7 +172,6 @@
         with:iconBytes
         ifNotUnderstood:[
             self breakPoint:#cg.
-self halt.
             ('MacOSXIconReader: unsupported icon format: ',iconType) infoPrintCR.
             ^ self fileFormatError:'unsupported icon format: ',iconType
         ].
@@ -557,7 +556,7 @@
 read_ICN__from:bytes
     "read an ICN# format icon"
 
-self halt.
+self halt:'unimplemented'.
     ^ nil
 
     "
@@ -612,7 +611,7 @@
 read_icl8_from:bytes
     "read an icl8 format icon"
 
-self halt.
+self halt:'unimplemented'.
     ^ nil
 
     "
@@ -657,7 +656,7 @@
 read_il32_from:bytes
     "read an il32 format icon"
 
-self halt.
+self halt:'unimplemented'.
     ^ nil
 
     "
@@ -690,7 +689,7 @@
 read_is32_from:bytes
     "read an is32 format icon"
 
-self halt.
+self halt:'unimplemented'.
     ^ nil
 
     "
@@ -701,7 +700,7 @@
 read_it32_from:bytes
     "read an it32 format icon"
 
-self halt.
+self halt:'unimplemented'.
     ^ nil
 
     "
@@ -712,7 +711,7 @@
 read_l8mk_from:bytes
     "read an l8mk format icon"
 
-self halt.
+self halt:'unimplemented'.
     ^ nil
 
     "
@@ -723,7 +722,7 @@
 read_s8mk_from:bytes
     "read an s8mk format icon"
 
-self halt.
+self halt:'unimplemented'.
     ^ nil
 
     "
@@ -734,7 +733,7 @@
 read_t8mk_from:bytes
     "read an t8mk format icon"
 
-self halt.
+self halt:'unimplemented'.
     ^ nil
 
     "
@@ -745,11 +744,11 @@
 !MacOSXIconReader class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/MacOSXIconReader.st,v 1.6 2013-05-15 09:50:06 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/MacOSXIconReader.st,v 1.7 2013-06-20 22:47:18 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview2/MacOSXIconReader.st,v 1.6 2013-05-15 09:50:06 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/MacOSXIconReader.st,v 1.7 2013-06-20 22:47:18 cg Exp $'
 ! !