#FEATURE by cg
authorClaus Gittinger <cg@exept.de>
Thu, 23 Feb 2017 16:55:54 +0100
changeset 5500 821ec5a9d9c4
parent 5499 8c729d93a77c
child 5501 905b5a2216f7
#FEATURE by cg class: ProgressNotification added: #progressPercentage:statusInfo: changed: #progressPercentage:
ProgressNotification.st
--- a/ProgressNotification.st	Thu Feb 23 15:55:02 2017 +0100
+++ b/ProgressNotification.st	Thu Feb 23 16:55:54 2017 +0100
@@ -62,7 +62,22 @@
 !
 
 progressPercentage:aPercentageNumber
-    self raiseRequestWith:aPercentageNumber
+    ^ self basicNew
+        raiseRequestWith:aPercentageNumber 
+        in:thisContext sender
+    "/ self raiseRequestWith:aPercentageNumber
+
+    "Modified: / 23-02-2017 / 16:51:52 / cg"
+!
+
+progressPercentage:aPercentageNumber statusInfo:statusInfo
+    ^ self basicNew
+        statusInfo:statusInfo;
+        raiseRequestWith:aPercentageNumber 
+        in:thisContext sender
+    "/ self raiseRequestWith:aPercentageNumber
+
+    "Created: / 23-02-2017 / 16:52:11 / cg"
 ! !
 
 !ProgressNotification methodsFor:'accessing'!