no halt should be without an argument
authorClaus Gittinger <cg@exept.de>
Wed, 22 Oct 2008 00:18:45 +0200
changeset 3564 a587be34447c
parent 3563 8cb77d063bdb
child 3565 8147249b4aa6
no halt should be without an argument
ImageEditView.st
--- a/ImageEditView.st	Mon Oct 20 16:55:49 2008 +0200
+++ b/ImageEditView.st	Wed Oct 22 00:18:45 2008 +0200
@@ -1465,7 +1465,10 @@
         pixelAction := [:x :y :clr | Color hue:hue light:clr light saturation:100]
     ].
 
-    pixelAction isNil ifTrue:[self halt. ^ false].
+    pixelAction isNil ifTrue:[
+        self halt:'no pixelAction'. 
+        ^ false
+    ].
 
     image colorMap notNil ifTrue:[
         "/ compute required colors ...
@@ -2554,7 +2557,7 @@
 !ImageEditView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/ImageEditView.st,v 1.228 2008-07-22 12:26:56 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/ImageEditView.st,v 1.229 2008-10-21 22:18:45 cg Exp $'
 ! !
 
 ImageEditView initialize!