class: UserNotification
authorStefan Vogel <sv@exept.de>
Wed, 12 Dec 2012 15:30:09 +0100
changeset 14554 246cb9b21fdc
parent 14553 8fc67b4af2ae
child 14555 2872ee4b234f
class: UserNotification changed: #notify: #notify:progress:
UserNotification.st
--- 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!