#BUGFIX by stefan
authorStefan Vogel <sv@exept.de>
Tue, 12 Mar 2019 18:21:44 +0100
changeset 23869 2dd631fd841e
parent 23868 f7295016cf59
child 23870 d8c11a79be0e
#BUGFIX by stefan class: AbortAllOperationRequest class changed: #handleAndAnswerQueryIn: return aBlock's value
AbortAllOperationRequest.st
--- a/AbortAllOperationRequest.st	Tue Mar 12 18:12:52 2019 +0100
+++ b/AbortAllOperationRequest.st	Tue Mar 12 18:21:44 2019 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2002 by eXept Software AG
               All Rights Reserved
@@ -65,7 +67,7 @@
     "evaluate aBlock, and return immediately, if the AbortAllRequest is raised.
      Answer any query if AllOperationWanted with true."
 
-    self handle:[:ex |
+    ^ self handle:[:ex |
     ] do:[
         AbortAllOperationWantedQuery 
             answer:true
@@ -82,6 +84,7 @@
     "
 
     "Created: / 09-02-2011 / 13:58:01 / cg"
+    "Modified: / 12-03-2019 / 18:04:09 / Stefan Vogel"
 ! !
 
 !AbortAllOperationRequest class methodsFor:'documentation'!