# HG changeset patch # User Stefan Vogel # Date 1106327767 -3600 # Node ID 64a59d1b803c10923e8d8548d2618db075fa1ad6 # Parent e9543a43bb71970ecb67b4467fd002333e1ebe05 Use SignalSets instead of nested handlers. diff -r e9543a43bb71 -r 64a59d1b803c 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!