added: #notify:progress:
authorClaus Gittinger <cg@exept.de>
Tue, 31 Jul 2012 23:06:26 +0200
changeset 4138 e65b7c94ed2f
parent 4137 1a5fdfd6cd4f
child 4139 77a120ffc684
added: #notify:progress: Jan's missing method
ProgressNotification.st
--- a/ProgressNotification.st	Fri Jul 27 11:08:32 2012 +0200
+++ b/ProgressNotification.st	Tue Jul 31 23:06:26 2012 +0200
@@ -36,6 +36,16 @@
 
 !ProgressNotification class methodsFor:'instance creation'!
 
+notify: message progress: progress
+
+    ^ProgressNotification new
+        messageText: message;
+        parameter: progress;
+        raiseRequest
+
+    "Created: / 31-07-2012 / 16:13:54 / cg"
+!
+
 progressPercentage:aPercentageNumber
     self raiseRequestWith:aPercentageNumber
 ! !
@@ -49,5 +59,5 @@
 !ProgressNotification class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/ProgressNotification.st,v 1.3 2008-10-04 10:27:41 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/ProgressNotification.st,v 1.4 2012-07-31 21:06:26 cg Exp $'
 ! !