ProgressNotification.st
changeset 4138 e65b7c94ed2f
parent 3541 7d676ed9b6bb
child 4157 67226e0d3d71
--- 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 $'
 ! !