ProgressNotification.st
changeset 4157 67226e0d3d71
parent 4138 e65b7c94ed2f
child 5304 4b50bec89cd5
equal deleted inserted replaced
4156:7ee9d00b78f7 4157:67226e0d3d71
    32  other person.  No title to or ownership of the software is
    32  other person.  No title to or ownership of the software is
    33  hereby transferred.
    33  hereby transferred.
    34 "
    34 "
    35 ! !
    35 ! !
    36 
    36 
    37 !ProgressNotification class methodsFor:'instance creation'!
    37 !ProgressNotification class methodsFor:'notification'!
    38 
    38 
    39 notify: message progress: progress
    39 notify: message progress: progress
    40 
    40     ^ self new
    41     ^ProgressNotification new
       
    42         messageText: message;
    41         messageText: message;
    43         parameter: progress;
    42         parameter: progress;
    44         raiseRequest
    43         raiseRequest
    45 
    44 
    46     "Created: / 31-07-2012 / 16:13:54 / cg"
    45     "Created: / 31-07-2012 / 16:13:54 / cg"
    57 ! !
    56 ! !
    58 
    57 
    59 !ProgressNotification class methodsFor:'documentation'!
    58 !ProgressNotification class methodsFor:'documentation'!
    60 
    59 
    61 version
    60 version
    62     ^ '$Header: /cvs/stx/stx/libwidg2/ProgressNotification.st,v 1.4 2012-07-31 21:06:26 cg Exp $'
    61     ^ '$Header: /cvs/stx/stx/libwidg2/ProgressNotification.st,v 1.5 2012-12-12 14:30:26 stefan Exp $'
    63 ! !
    62 ! !