UserNotification.st
changeset 14554 246cb9b21fdc
parent 14270 97d89811ce9f
child 14949 db71d89dd7f3
child 18011 deb0c3355881
--- a/UserNotification.st	Tue Dec 11 18:26:54 2012 +0100
+++ b/UserNotification.st	Wed Dec 12 15:30:09 2012 +0100
@@ -85,15 +85,11 @@
 !UserNotification class methodsFor:'notification'!
 
 notify:aString
-    self raiseErrorString:aString
+    self raiseRequestErrorString:aString
 !
 
-notify: message progress: progress
-
-    ^ProgressNotification new
-        messageText: message;
-        parameter: progress;
-        raiseRequest
+notify:message progress:progress
+    ^ ProgressNotification notify:message progress:progress
 
     "Created: / 31-07-2012 / 15:18:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
@@ -152,11 +148,11 @@
 !UserNotification class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UserNotification.st,v 1.16 2012-07-31 14:18:45 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UserNotification.st,v 1.17 2012-12-12 14:30:09 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/UserNotification.st,v 1.16 2012-07-31 14:18:45 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UserNotification.st,v 1.17 2012-12-12 14:30:09 stefan Exp $'
 ! !
 
 UserNotification initialize!