Use SignalSets instead of nested handlers.
authorStefan Vogel <sv@exept.de>
Fri, 21 Jan 2005 18:16:07 +0100
changeset 8694 64a59d1b803c
parent 8693 e9543a43bb71
child 8695 8240c22db37b
Use SignalSets instead of nested handlers.
ClassDescription.st
--- a/ClassDescription.st	Fri Jan 21 18:11:51 2005 +0100
+++ b/ClassDescription.st	Fri Jan 21 18:16:07 2005 +0100
@@ -1368,12 +1368,9 @@
 
     |retVal|
 
-    UpdateChangeFileQuerySignal answer:false
+    (UpdateChangeFileQuerySignal, UpdateChangeListQuerySignal) answer:false
     do:[
-	UpdateChangeListQuerySignal answer:false
-	do:[
-	   retVal := aBlock value
-	].
+        retVal := aBlock value
     ].
     ^ retVal
 
@@ -3937,7 +3934,7 @@
 !ClassDescription class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.177 2004-09-20 08:58:53 ca Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.178 2005-01-21 17:16:07 stefan Exp $'
 ! !
 
 ClassDescription initialize!